Method | Description | |
---|---|---|
Add ( string parameterName, string parameterValue ) : void |
Adds a new header field parameter with specified name and value to the end of the collection.
|
|
Clear ( ) : void |
Clears the collection of all header field parameters.
|
|
Contains ( string parameterName ) : bool |
Gets if collection contains specified parameter.
|
|
GetEnumerator ( ) : IEnumerator |
Gets enumerator.
|
|
Remove ( string parameterName ) : void |
Removes specified header field parameter from the collection.
|
|
this ( string parameterName ) : string |
Gets or sets specified parameter value.
|
Method | Description | |
---|---|---|
HeaderFieldParameterCollection ( |
Default constructor.
|
public Add ( string parameterName, string parameterValue ) : void | ||
parameterName | string | Parameter name. |
parameterValue | string | Parameter value. |
return | void |
public Contains ( string parameterName ) : bool | ||
parameterName | string | Parameter name. |
return | bool |
public Remove ( string parameterName ) : void | ||
parameterName | string | The name of the header field parameter to remove. |
return | void |
public this ( string parameterName ) : string | ||
parameterName | string | |
return | string |