C# Класс HttpServer.HttpClientContext

Contains a connection to a browser/client.
Remember to Start after you have hooked the RequestReceived event.
Наследование: IHttpClientContext, IDisposable
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
Available bool

Private Properties

Свойство Тип Описание
Dispose void
OnReceive void
OnRequestCompleted void
OnRequestLine void

Открытые методы

Метод Описание
Cleanup ( ) : void

Clean up context.

Make sure to call base.Cleanup() if you override the method.

Close ( ) : void
Disconnect ( SocketError error ) : void

Disconnect from client

Dispose ( ) : void
HttpClientContext ( bool secured, IPEndPoint remoteEndPoint, Stream stream, IRequestParserFactory parserFactory, int bufferSize, Socket sock, ILogWriter log ) : System

Initializes a new instance of the HttpClientContext class.

Respond ( string body ) : void

Send a response.

Respond ( string httpVersion, HttpServer.HttpStatusCode statusCode, string reason ) : void

Send a response.

Respond ( string httpVersion, HttpServer.HttpStatusCode statusCode, string reason, string body, string contentType ) : void

Send a response.

Send ( byte buffer ) : void

send a whole buffer

Send ( byte buffer, int offset, int size ) : void

Send data using the stream

Start ( ) : void

Start reading content.

Make sure to call base.Start() if you override this method.

Защищенные методы

Метод Описание
OnBodyBytesReceived ( object sender, HttpServer.Parser.BodyEventArgs e ) : void

Process incoming body bytes.

OnHeaderReceived ( object sender, HttpServer.Parser.HeaderEventArgs e ) : void

Приватные методы

Метод Описание
Dispose ( bool unmanaged ) : void
OnReceive ( IAsyncResult ar ) : void
OnRequestCompleted ( object source, EventArgs args ) : void
OnRequestLine ( object sender, HttpServer.Parser.RequestLineEventArgs e ) : void

Описание методов

Cleanup() публичный Метод

Clean up context.
Make sure to call base.Cleanup() if you override the method.
public Cleanup ( ) : void
Результат void

Close() публичный Метод

public Close ( ) : void
Результат void

Disconnect() публичный Метод

Disconnect from client
public Disconnect ( SocketError error ) : void
error SocketError error to report in the event.
Результат void

Dispose() публичный Метод

public Dispose ( ) : void
Результат void

HttpClientContext() публичный Метод

Initializes a new instance of the HttpClientContext class.
If fails Stream must be writable and readable.
public HttpClientContext ( bool secured, IPEndPoint remoteEndPoint, Stream stream, IRequestParserFactory parserFactory, int bufferSize, Socket sock, ILogWriter log ) : System
secured bool true if the connection is secured (SSL/TLS)
remoteEndPoint System.Net.IPEndPoint client that connected.
stream Stream Stream used for communication
parserFactory IRequestParserFactory Used to create a .
bufferSize int Size of buffer to use when reading data. Must be at least 4096 bytes.
sock Socket
log ILogWriter
Результат System

OnBodyBytesReceived() защищенный Метод

Process incoming body bytes.
protected OnBodyBytesReceived ( object sender, HttpServer.Parser.BodyEventArgs e ) : void
sender object
e HttpServer.Parser.BodyEventArgs Bytes
Результат void

OnHeaderReceived() защищенный Метод

protected OnHeaderReceived ( object sender, HttpServer.Parser.HeaderEventArgs e ) : void
sender object
e HttpServer.Parser.HeaderEventArgs
Результат void

Respond() публичный Метод

Send a response.
public Respond ( string body ) : void
body string
Результат void

Respond() публичный Метод

Send a response.
public Respond ( string httpVersion, HttpServer.HttpStatusCode statusCode, string reason ) : void
httpVersion string Either or
statusCode HttpServer.HttpStatusCode HTTP status code
reason string reason for the status code.
Результат void

Respond() публичный Метод

Send a response.
If is invalid.
public Respond ( string httpVersion, HttpServer.HttpStatusCode statusCode, string reason, string body, string contentType ) : void
httpVersion string Either or
statusCode HttpServer.HttpStatusCode HTTP status code
reason string reason for the status code.
body string HTML body contents, can be null or empty.
contentType string A content type to return the body as, i.e. 'text/html' or 'text/plain', defaults to 'text/html' if null or empty
Результат void

Send() публичный Метод

send a whole buffer
public Send ( byte buffer ) : void
buffer byte buffer to send
Результат void

Send() публичный Метод

Send data using the stream
public Send ( byte buffer, int offset, int size ) : void
buffer byte Contains data to send
offset int Start position in buffer
size int number of bytes to send
Результат void

Start() публичный Метод

Start reading content.
Make sure to call base.Start() if you override this method.
public Start ( ) : void
Результат void

Описание свойств

Available публичное свойство

public bool Available
Результат bool