C# Class BF2Statistics.Web.HttpRequest

Afficher le fichier Open project: BF2Statistics/ControlCenter

Méthodes publiques

Свойство Type Description
QueryString string>.Dictionary

Protected Properties

Свойство Type Description
Client HttpClient
PostVars string>.Dictionary

Méthodes publiques

Méthode Description
GetFormUrlEncodedPostVars ( ) : string>.Dictionary

If a form was submitted using the POST http method, and the entity body is UrlFormEncoded, the post variables can be fetched from this method

HttpRequest ( HttpListenerRequest Request, HttpClient Client ) : System

Creates a new instance of HttpRequest

Method Details

GetFormUrlEncodedPostVars() public méthode

If a form was submitted using the POST http method, and the entity body is UrlFormEncoded, the post variables can be fetched from this method
public GetFormUrlEncodedPostVars ( ) : string>.Dictionary
Résultat string>.Dictionary

HttpRequest() public méthode

Creates a new instance of HttpRequest
public HttpRequest ( HttpListenerRequest Request, HttpClient Client ) : System
Request System.Net.HttpListenerRequest
Client HttpClient The HttpClient creating this response
Résultat System

Property Details

Client protected_oe property

The Parent Http Request
protected HttpClient,BF2Statistics.Web Client
Résultat HttpClient

PostVars protected_oe property

A Key => Value collection of our formUrlEncoded POST Vars
protected Dictionary PostVars
Résultat string>.Dictionary

QueryString public_oe property

Contains the Key / Value pairs in the query string
public Dictionary QueryString
Résultat string>.Dictionary