C# Class Gallatin.Core.Web.HttpResponseHeaderEventArgs

HTTP response header event arguments
Inheritance: HttpHeaderEventArgs
ファイルを表示 Open project: williamoneill/Gallatin Class Usage Examples

Public Methods

Method Description
HttpResponseHeaderEventArgs ( string version, IHttpHeaders headers, int statusCode, string statusText ) : System

Creates a new instance of the class

Protected Methods

Method Description
CreateFirstLine ( ) : string

Creates the first line in the HTTP response

Method Details

CreateFirstLine() protected method

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

HttpResponseHeaderEventArgs() public method

Creates a new instance of the class
public HttpResponseHeaderEventArgs ( string version, IHttpHeaders headers, int statusCode, string statusText ) : System
version string HTTP version
headers IHttpHeaders HTTP headers
statusCode int HTTP response status code
statusText string HTTP response status text
return System