C# 클래스 System.Net.Http.Formatting.Parsers.FormUrlEncodedParser

Buffer-oriented parsing of HTML form URL-ended, also known as application/x-www-form-urlencoded, data.
파일 보기 프로젝트 열기: anurse/ReviewR 1 사용 예제들

공개 메소드들

메소드 설명
FormUrlEncodedParser ( string>.ICollection nameValuePairs, long maxMessageSize ) : System.Collections.Generic

Initializes a new instance of the FormUrlEncodedParser class.

비공개 메소드들

메소드 설명
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

메소드 상세

FormUrlEncodedParser() 공개 메소드

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.
리턴 System.Collections.Generic