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

Maintains information about the current header field being parsed.
显示文件 Open project: anurse/ReviewR

Public Methods

Method Description
CopyNameOnlyTo ( string>.ICollection nameValuePairs ) : void

Copies current name-only to the provided collection instance.

CopyTo ( string>.ICollection nameValuePairs ) : void

Copies current name value pair field to the provided collection instance.

Private Methods

Method Description
Clear ( ) : void

Clears this instance.

Method Details

CopyNameOnlyTo() public method

Copies current name-only to the provided collection instance.
public CopyNameOnlyTo ( string>.ICollection nameValuePairs ) : void
nameValuePairs string>.ICollection The collection to copy into.
return void

CopyTo() public method

Copies current name value pair field to the provided collection instance.
public CopyTo ( string>.ICollection nameValuePairs ) : void
nameValuePairs string>.ICollection The collection to copy into.
return void