using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Text; namespace Client.SSE { public interface IServerResponse { HttpStatusCode StatusCode { get; } System.IO.Stream GetResponseStream(); Uri ResponseUri { get; } } }