HttpExpectationHeaderValue.Parameters Property

Definition

Gets a set of parameters for a server behavior included in the Expect HTTP header.

public:
 property IVector<HttpNameValueHeaderValue ^> ^ Parameters { IVector<HttpNameValueHeaderValue ^> ^ get(); };
IVector<HttpNameValueHeaderValue> Parameters();
public IList<HttpNameValueHeaderValue> Parameters { get; }
var iVector = httpExpectationHeaderValue.parameters;
Public ReadOnly Property Parameters As IList(Of HttpNameValueHeaderValue)

Property Value

A set of parameters for a server behavior.

Remarks

A given server behavior might not allow parameters and the Parameters property would be an empty list. For example, 100-continue is never used with parameters.

Applies to