HttpExpectationHeaderValueCollection
HttpExpectationHeaderValueCollection
HttpExpectationHeaderValueCollection
HttpExpectationHeaderValueCollection
Class
Definition
Represents the value of the Expect HTTP header on an HTTP request.
public : sealed class HttpExpectationHeaderValueCollection : IIterable, IVector, IStringable, IHttpExpectationHeaderValueCollectionpublic sealed class HttpExpectationHeaderValueCollection : IEnumerable, IList, IStringable, IHttpExpectationHeaderValueCollectionPublic NotInheritable Class HttpExpectationHeaderValueCollection Implements IEnumerable, IList, IStringable, IHttpExpectationHeaderValueCollection// You can use this class in JavaScript.
- Attributes
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Remarks
The HttpExpectationHeaderValueCollection class represents the value of the Expect HTTP header on an HTTP request.
The HttpExpectationHeaderValueCollection provides a collection container for instances of the HttpExpectationHeaderValue class used for expect information in the Expect HTTP header.
The Expect property on the HttpRequestHeaderCollection returns an HttpExpectationHeaderValueCollection object.
Properties
Item[Int32] Item[Int32] Item[Int32] Item[Int32]
Gets or sets the element at the specified index.
This member is not implemented in C++T this[int index] { get; set; }Property Item(index As Integer) As TT this[int index] { get; set; }
- index
The zero-based index of the element to get or set.
- Value
- T T T T
The element at the specified index.
index is not a valid index in the System.Collections.Generic.IList`1.
The property is set and the System.Collections.Generic.IList`1 is read-only.
Size Size Size Size
Gets the number of HttpExpectationHeaderValue objects in the collection.
public : unsigned int Size { get; }This member is not implemented in C#This member is not implemented in VB.Net// You can use this property in JavaScript.
- Value
- unsigned int uint uint uint
The number of HttpExpectationHeaderValue objects in the HttpExpectationHeaderValueCollection.
Methods
Append(HttpExpectationHeaderValue) Append(HttpExpectationHeaderValue) Append(HttpExpectationHeaderValue) Append(HttpExpectationHeaderValue)
Adds a new HttpExpectationHeaderValue item to the end of the collection.
public : void Append(HttpExpectationHeaderValue value)This member is not implemented in C#This member is not implemented in VB.Net// You can use this method in JavaScript.
- value
- HttpExpectationHeaderValue HttpExpectationHeaderValue HttpExpectationHeaderValue HttpExpectationHeaderValue
The new item to add.
Clear() Clear() Clear() Clear()
Removes all objects from the collection.
public : void Clear()This member is not implemented in C#This member is not implemented in VB.Net// You can use this method in JavaScript.
First() First() First() First()
Retrieves an iterator to the first HttpExpectationHeaderValue item in the collection.
public : IIterator<HttpExpectationHeaderValue> First()This member is not implemented in C#This member is not implemented in VB.Net// You can use this method in JavaScript.
An object that can be used to enumerate the HttpExpectationHeaderValue items in the collection. The iterator points to the first HttpExpectationHeaderValue item in the HttpExpectationHeaderValueCollection.
GetAt(UInt32) GetAt(UInt32) GetAt(UInt32) GetAt(UInt32)
Returns the HttpExpectationHeaderValue at the specified index in the collection.
public : HttpExpectationHeaderValue GetAt(unsigned int index)This member is not implemented in C#This member is not implemented in VB.Net// You can use this method in JavaScript.
- index
- unsigned int UInt32 UInt32 UInt32
The zero-based index of a specified item in the collection.
GetEnumerator() GetEnumerator() GetEnumerator() GetEnumerator()
Returns an enumerator that iterates through the collection.
This member is not implemented in C++IEnumerator<T> GetEnumerator()Function GetEnumerator As IEnumerator(Of T)IEnumerator<T> GetEnumerator()
An enumerator that can be used to iterate through the collection.
GetMany(UInt32, HttpExpectationHeaderValue[]) GetMany(UInt32, HttpExpectationHeaderValue[]) GetMany(UInt32, HttpExpectationHeaderValue[]) GetMany(UInt32, HttpExpectationHeaderValue[])
Retrieves the HttpExpectationHeaderValue items that start at the specified index in the collection.
public : unsigned int GetMany(unsigned int startIndex, HttpExpectationHeaderValue[] items)This member is not implemented in C#This member is not implemented in VB.Net// You can use this method in JavaScript.
- startIndex
- unsigned int UInt32 UInt32 UInt32
The zero-based index of the start of the HttpExpectationHeaderValue items in the HttpExpectationHeaderValueCollection.
- items
- HttpExpectationHeaderValue[] HttpExpectationHeaderValue[] HttpExpectationHeaderValue[] HttpExpectationHeaderValue[]
An array of HttpExpectationHeaderValue items that start at startIndex in the HttpExpectationHeaderValueCollection.
The number of items retrieved.
GetView() GetView() GetView() GetView()
Returns an immutable view of the HttpExpectationHeaderValueCollection.
public : IVectorView<HttpExpectationHeaderValue> GetView()This member is not implemented in C#This member is not implemented in VB.Net// You can use this method in JavaScript.
The view of the HttpExpectationHeaderValueCollection.
IndexOf(T) IndexOf(T) IndexOf(T) IndexOf(T)
Determines the index of a specific item in the System.Collections.Generic.IList`1.
This member is not implemented in C++int IndexOf(T item)Function IndexOf(item As T) As Integerint IndexOf(T item)
- item
- T T T T
The object to locate in the System.Collections.Generic.IList`1.
The index of item if found in the list; otherwise, -1.
IndexOf(HttpExpectationHeaderValue, UInt32) IndexOf(HttpExpectationHeaderValue, UInt32) IndexOf(HttpExpectationHeaderValue, UInt32) IndexOf(HttpExpectationHeaderValue, UInt32)
Retrieves the index of an HttpExpectationHeaderValue in the collection.
public : PlatForm::Boolean IndexOf(HttpExpectationHeaderValue value, unsigned int index)This member is not implemented in C#This member is not implemented in VB.Net// You can use this method in JavaScript.
- value
- HttpExpectationHeaderValue HttpExpectationHeaderValue HttpExpectationHeaderValue HttpExpectationHeaderValue
The HttpExpectationHeaderValue to find in the HttpExpectationHeaderValueCollection.
- index
- unsigned int UInt32 UInt32 UInt32
The index of the HttpExpectationHeaderValue in the HttpExpectationHeaderValueCollection.
If the item is found, this is the zero-based index of the item; otherwise, this parameter is 0.
Indicates whether the item is found.
true if the HttpExpectationHeaderValue item is found; otherwise, false.
Insert(Int32, T) Insert(Int32, T) Insert(Int32, T) Insert(Int32, T)
Inserts an item to the System.Collections.Generic.IList`1 at the specified index.
This member is not implemented in C++void Insert(int index, T item)Sub Insert(index As Integer, item As T)void Insert(int index, T item)
- index
The zero-based index at which item should be inserted.
- item
- T T T T
The object to insert into the System.Collections.Generic.IList`1.
index is not a valid index in the System.Collections.Generic.IList`1.
The System.Collections.Generic.IList`1 is read-only.
InsertAt(UInt32, HttpExpectationHeaderValue) InsertAt(UInt32, HttpExpectationHeaderValue) InsertAt(UInt32, HttpExpectationHeaderValue) InsertAt(UInt32, HttpExpectationHeaderValue)
Inserts an HttpExpectationHeaderValue into the collection at the specified index.
public : void InsertAt(unsigned int index, HttpExpectationHeaderValue value)This member is not implemented in C#This member is not implemented in VB.Net// You can use this method in JavaScript.
- index
- unsigned int UInt32 UInt32 UInt32
The zero-based index at which value should be inserted.
- value
- HttpExpectationHeaderValue HttpExpectationHeaderValue HttpExpectationHeaderValue HttpExpectationHeaderValue
The object to insert into the collection.
ParseAdd(String) ParseAdd(String) ParseAdd(String) ParseAdd(String)
Parses and adds an entry to the HttpExpectationHeaderValueCollection.
public : void ParseAdd(PlatForm::String input)public void ParseAdd(String input)Public Function ParseAdd(input As String) As void// You can use this method in JavaScript.
- input
- PlatForm::String String String String
The entry to add.
Remarks
Below are the exceptions that this function throws.
E_INVALIDARG
The input parameter is null (Nothing in Visual Basic).
The input parameter is not a valid value for the Expect HTTP header.
RemoveAt(Int32) RemoveAt(Int32) RemoveAt(Int32) RemoveAt(Int32)
Removes the System.Collections.Generic.IList`1 item at the specified index.
This member is not implemented in C++void RemoveAt(int index)Sub RemoveAt(index As Integer)void RemoveAt(int index)
- index
The zero-based index of the item to remove.
index is not a valid index in the System.Collections.Generic.IList`1.
The System.Collections.Generic.IList`1 is read-only.
RemoveAt(UInt32) RemoveAt(UInt32) RemoveAt(UInt32) RemoveAt(UInt32)
Removes the entry at the specified index from the HttpExpectationHeaderValueCollection.
public : void RemoveAt(unsigned int index)This member is not implemented in C#This member is not implemented in VB.Net// You can use this method in JavaScript.
- index
- unsigned int UInt32 UInt32 UInt32
The index of the entry to remove.
RemoveAtEnd() RemoveAtEnd() RemoveAtEnd() RemoveAtEnd()
Removes the last HttpExpectationHeaderValue item from the collection.
public : void RemoveAtEnd()This member is not implemented in C#This member is not implemented in VB.Net// You can use this method in JavaScript.
ReplaceAll(HttpExpectationHeaderValue[]) ReplaceAll(HttpExpectationHeaderValue[]) ReplaceAll(HttpExpectationHeaderValue[]) ReplaceAll(HttpExpectationHeaderValue[])
Replaces all the HttpExpectationHeaderValue items in the collection with the specified HttpExpectationHeaderValue items.
public : void ReplaceAll(HttpExpectationHeaderValue[] items)This member is not implemented in C#This member is not implemented in VB.Net// You can use this method in JavaScript.
- items
- HttpExpectationHeaderValue[] HttpExpectationHeaderValue[] HttpExpectationHeaderValue[] HttpExpectationHeaderValue[]
The HttpExpectationHeaderValue items to add to the collection.
SetAt(UInt32, HttpExpectationHeaderValue) SetAt(UInt32, HttpExpectationHeaderValue) SetAt(UInt32, HttpExpectationHeaderValue) SetAt(UInt32, HttpExpectationHeaderValue)
Sets the HttpExpectationHeaderValue at the specified index in the collection.
public : void SetAt(unsigned int index, HttpExpectationHeaderValue value)This member is not implemented in C#This member is not implemented in VB.Net// You can use this method in JavaScript.
- index
- unsigned int UInt32 UInt32 UInt32
The zero-based index at which to set the HttpExpectationHeaderValue.
- value
- HttpExpectationHeaderValue HttpExpectationHeaderValue HttpExpectationHeaderValue HttpExpectationHeaderValue
The item to set.
ToString() ToString() ToString() ToString()
Returns a string that represents the current HttpExpectationHeaderValueCollection object.
public : PlatForm::String ToString()public string ToString()Public Function ToString() As string// You can use this method in JavaScript.
A string that represents the current object.
TryParseAdd(String) TryParseAdd(String) TryParseAdd(String) TryParseAdd(String)
Tries to parse and add the specified item to the HttpExpectationHeaderValueCollection.
public : PlatForm::Boolean TryParseAdd(PlatForm::String input)public bool TryParseAdd(String input)Public Function TryParseAdd(input As String) As bool// You can use this method in JavaScript.
- input
- PlatForm::String String String String
The item to parse and add.
true if the item successfully parsed and was added; otherwise false.