using System; namespace EmbedIO { /// /// Represents a HTTP request or response. /// public interface IHttpMessage { /// /// Gets the cookies. /// /// /// The cookies. /// ICookieCollection Cookies { get; } /// /// Gets or sets the protocol version. /// /// /// The protocol version. /// Version ProtocolVersion { get; } } }