HttpCredentialsHeaderValue.Parameters Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a set of name/value pairs included in the Authorization or Proxy-Authorization HTTP header.
public:
property IVector<HttpNameValueHeaderValue ^> ^ Parameters { IVector<HttpNameValueHeaderValue ^> ^ get(); };
IVector<HttpNameValueHeaderValue> Parameters();
public IList<HttpNameValueHeaderValue> Parameters { get; }
var iVector = httpCredentialsHeaderValue.parameters;
Public ReadOnly Property Parameters As IList(Of HttpNameValueHeaderValue)
Property Value
A set of name/value pairs.
Remarks
The Parameters property gets a set of name/value pairs of the credentials containing the authentication information of the user agent for the resource being requested.
An HttpCredentialsHeaderValue object has a Scheme and either a Token or a Parameters list. So either the Parameters property is an empty collection or the Token property is an empty string.