C# Class System.Net.Http.Headers.NameValueHeaderValue

Inheritance: ICloneable
Mostra file Open project: dotnet/corefx Class Usage Examples

Public Methods

Method Description
Equals ( object obj ) : bool
GetHashCode ( ) : int
NameValueHeaderValue ( string name ) : System.Collections.Generic
NameValueHeaderValue ( string name, string value ) : System.Collections.Generic
Parse ( string input ) : NameValueHeaderValue
ToString ( ) : string
TryParse ( string input, NameValueHeaderValue &parsedValue ) : bool

Protected Methods

Method Description
NameValueHeaderValue ( NameValueHeaderValue source ) : System.Collections.Generic

Private Methods

Method Description
CheckNameValueFormat ( string name, string value ) : void
CheckValueFormat ( string value ) : void
CreateNameValue ( ) : NameValueHeaderValue
Find ( ObjectCollection values, string name ) : NameValueHeaderValue
GetHashCode ( ObjectCollection values ) : int
GetNameValueLength ( string input, int startIndex, Func nameValueCreator, NameValueHeaderValue &parsedValue ) : int
GetNameValueLength ( string input, int startIndex, NameValueHeaderValue &parsedValue ) : int
GetNameValueListLength ( string input, int startIndex, char delimiter, ObjectCollection nameValueCollection ) : int
GetValueLength ( string input, int startIndex ) : int
ICloneable ( ) : object
NameValueHeaderValue ( ) : System.Collections.Generic
ToString ( ObjectCollection values, char separator, bool leadingSeparator ) : string
ToString ( ObjectCollection values, char separator, bool leadingSeparator, StringBuilder destination ) : void

Method Details

Equals() public method

public Equals ( object obj ) : bool
obj object
return bool

GetHashCode() public method

public GetHashCode ( ) : int
return int

NameValueHeaderValue() protected method

protected NameValueHeaderValue ( NameValueHeaderValue source ) : System.Collections.Generic
source NameValueHeaderValue
return System.Collections.Generic

NameValueHeaderValue() public method

public NameValueHeaderValue ( string name ) : System.Collections.Generic
name string
return System.Collections.Generic

NameValueHeaderValue() public method

public NameValueHeaderValue ( string name, string value ) : System.Collections.Generic
name string
value string
return System.Collections.Generic

Parse() public static method

public static Parse ( string input ) : NameValueHeaderValue
input string
return NameValueHeaderValue

ToString() public method

public ToString ( ) : string
return string

TryParse() public static method

public static TryParse ( string input, NameValueHeaderValue &parsedValue ) : bool
input string
parsedValue NameValueHeaderValue
return bool