HttpChallengeHeaderValueCollection.Append(HttpChallengeHeaderValue) Method

Definition

Adds a new HttpChallengeHeaderValue item to the end of the collection.

public:
 virtual void Append(HttpChallengeHeaderValue ^ value) = IVector<HttpChallengeHeaderValue ^>::Append;
void Append(HttpChallengeHeaderValue const& value);
public void Append(HttpChallengeHeaderValue value);
function append(value)
Public Sub Append (value As HttpChallengeHeaderValue)

Parameters

Implements

Remarks

After you've added an item, you can use the IndexOf method to get it by index.

To add an item to a position in the collection that's not at the collection end, use the InsertAt method.

Applies to

See also