C# Class System.Net.Http.Formatting.Parsers.FormUrlEncodedParser

Buffer-oriented parsing of HTML form URL-ended, also known as application/x-www-form-urlencoded, data.
显示文件 Open project: anurse/ReviewR Class Usage Examples

Public Methods

Method Description
FormUrlEncodedParser ( string>.ICollection nameValuePairs, long maxMessageSize ) : System.Collections.Generic

Initializes a new instance of the FormUrlEncodedParser class.

Private Methods

Method Description
CopyCurrent ( ParserState parseState ) : ParserState
ParseBuffer ( byte buffer, int bytesReady, int &bytesConsumed, bool isFinal ) : ParserState
ParseNameValuePairs ( byte buffer, int bytesReady, int &bytesConsumed, NameValueState &nameValueState, long maximumLength, long &totalBytesConsumed, CurrentNameValuePair currentNameValuePair, string>.ICollection nameValuePairs ) : ParserState

Method Details

FormUrlEncodedParser() public method

Initializes a new instance of the FormUrlEncodedParser class.
public FormUrlEncodedParser ( string>.ICollection nameValuePairs, long maxMessageSize ) : System.Collections.Generic
nameValuePairs string>.ICollection The collection to which name value pairs are added as they are parsed.
maxMessageSize long Maximum length of all the individual name value pairs.
return System.Collections.Generic