C# Class Gallatin.Core.Web.HttpHeaderEventArgs

HTTP header event arguments base class
Inheritance: System.EventArgs
Afficher le fichier Open project: williamoneill/Gallatin

Méthodes publiques

Méthode Description
GetBuffer ( ) : byte[]

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

Méthodes protégées

Méthode 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 méthode

Creates the first line in the HTTP message
protected abstract CreateFirstLine ( ) : string
Résultat string

GetBuffer() public méthode

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

HttpHeaderEventArgs() protected méthode

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