26 lines
562 B
C#
26 lines
562 B
C#
using System;
|
|
|
|
namespace EmbedIO
|
|
{
|
|
/// <summary>
|
|
/// Represents a HTTP request or response.
|
|
/// </summary>
|
|
public interface IHttpMessage
|
|
{
|
|
/// <summary>
|
|
/// Gets the cookies.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The cookies.
|
|
/// </value>
|
|
ICookieCollection Cookies { get; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the protocol version.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The protocol version.
|
|
/// </value>
|
|
Version ProtocolVersion { get; }
|
|
}
|
|
} |