C# Class Webserver.Request

Contains information about a request
Inheritance: IDisposable
Mostrar archivo Open project: h07r0d/Netduino-Aquarium-Controller Class Usage Examples

Protected Properties

Property Type Description
_getArguments System.Collections.Hashtable
_headers System.Collections.Hashtable
_method string
_url string

Public Methods

Method Description
Dispose ( ) : void
Request ( char header, Socket client ) : System

Creates request

Private Methods

Method Description
ProcessGETParameters ( string parameters ) : void

Generated Key-Value-Hashtable for GET-Parameters

ProcessHeader ( char data ) : void

Fills the Request with the header values

Method Details

Dispose() public method

public Dispose ( ) : void
return void

Request() public method

Creates request
public Request ( char header, Socket client ) : System
header char
client Socket Socket that sent the request
return System

Property Details

_getArguments protected_oe property

protected Hashtable,System.Collections _getArguments
return System.Collections.Hashtable

_headers protected_oe property

protected Hashtable,System.Collections _headers
return System.Collections.Hashtable

_method protected_oe property

protected string _method
return string

_url protected_oe property

protected string _url
return string