C# Class Gallatin.Core.Web.HttpHeaderEventArgs

HTTP header event arguments base class
Inheritance: System.EventArgs
ファイルを表示 Open project: williamoneill/Gallatin

Public Methods

Method Description
GetBuffer ( ) : byte[]

Gets the raw representation used to send the message on the network

Protected Methods

Method Description
CreateFirstLine ( ) : string

Creates the first line in the HTTP message

HttpHeaderEventArgs ( string version, IHttpHeaders headers ) : System

Creates a new instance of the class

Method Details

CreateFirstLine() protected abstract method

Creates the first line in the HTTP message
protected abstract CreateFirstLine ( ) : string
return string

GetBuffer() public method

Gets the raw representation used to send the message on the network
public GetBuffer ( ) : byte[]
return byte[]

HttpHeaderEventArgs() protected method

Creates a new instance of the class
protected HttpHeaderEventArgs ( string version, IHttpHeaders headers ) : System
version string HTTP version
headers IHttpHeaders HTTP headers
return System