HttpChallengeHeaderValueCollection.Append(HttpChallengeHeaderValue) Method
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.
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
- value
- HttpChallengeHeaderValue
The HttpChallengeHeaderValue object to append.
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.