HttpContentCodingWithQualityHeaderValueCollection
HttpContentCodingWithQualityHeaderValueCollection
HttpContentCodingWithQualityHeaderValueCollection
HttpContentCodingWithQualityHeaderValueCollection
Class
Definition
Represents the value of the Accept-Encoding HTTP header on an HTTP request.
public : sealed class HttpContentCodingWithQualityHeaderValueCollection : IIterable, IVector, IStringable, IHttpContentCodingWithQualityHeaderValueCollectionpublic sealed class HttpContentCodingWithQualityHeaderValueCollection : IEnumerable, IList, IStringable, IHttpContentCodingWithQualityHeaderValueCollectionPublic NotInheritable Class HttpContentCodingWithQualityHeaderValueCollection Implements IEnumerable, IList, IStringable, IHttpContentCodingWithQualityHeaderValueCollection// You can use this class in JavaScript.
- Attributes
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Examples
The following sample code shows a method to get and set the Accept-Encoding HTTP header on an HttpRequestMessage object using the properties and methods on the HttpContentCodingWithQualityHeaderValueCollection and HttpContentCodingWithQualityHeaderValue classes.
using Windows.Web.Http;
using Windows.Web.Http.Headers;
public void DemonstrateHeaderRequestAcceptEncoding()
{
var request = new HttpRequestMessage();
bool parsedOk = false;
// Set the header with a string.
parsedOk = request.Headers.AcceptEncoding.TryParseAdd("compress");
parsedOk = request.Headers.AcceptEncoding.TryParseAdd("gzip;q=1.0");
// Set the header with a strong type.
request.Headers.AcceptEncoding.Add(new HttpContentCodingWithQualityHeaderValue("*", 0));
// Get the strong type out
foreach (var value in request.Headers.AcceptEncoding)
{
System.Diagnostics.Debug.WriteLine("One of the AcceptEncoding values: {0}={1}", value.ContentCoding, value.Quality);
}
// The ToString() is useful for diagnostics, too.
System.Diagnostics.Debug.WriteLine("The AcceptEncoding ToString() results: {0}", request.Headers.AcceptEncoding.ToString());
}
Remarks
The HttpContentCodingWithQualityHeaderValueCollection class represents the value of the Accept-Encoding HTTP header on an HTTP request.
The HttpContentCodingWithQualityHeaderValueCollection provides a collection container for instances of the HttpContentCodingWithQualityHeaderValue class used for accept encoding information in the Accept-Encoding HTTP header.
The AcceptEncoding property on the HttpRequestHeaderCollection returns an HttpContentCodingWithQualityHeaderValueCollection object. This is the method used to construct an HttpContentCodingWithQualityHeaderValueCollection object.
Collection member lists
For JavaScript, HttpContentCodingWithQualityHeaderValueCollection has the members shown in the member lists. In addition, HttpContentCodingWithQualityHeaderValueCollection supports members of Array.prototype and using an index to access items.
Enumerating the collection in C# or Microsoft Visual Basic
You can iterate through an HttpContentCodingWithQualityHeaderValueCollection object in C# or Microsoft Visual Basic. In many cases, such as using foreach syntax, the compiler does this casting for you and you won't need to cast to IEnumerable<HttpContentCodingWithQualityHeaderValue> explicitly. If you do need to cast explicitly, for example if you want to call GetEnumerator, cast the collection object to IEnumerable
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 HttpContentCodingWithQualityHeaderValue 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 HttpContentCodingWithQualityHeaderValue objects in the HttpContentCodingWithQualityHeaderValueCollection.
Methods
Append(HttpContentCodingWithQualityHeaderValue) Append(HttpContentCodingWithQualityHeaderValue) Append(HttpContentCodingWithQualityHeaderValue) Append(HttpContentCodingWithQualityHeaderValue)
Adds a new HttpContentCodingWithQualityHeaderValue item to the end of the collection.
public : void Append(HttpContentCodingWithQualityHeaderValue value)This member is not implemented in C#This member is not implemented in VB.Net// You can use this method in JavaScript.
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 HttpContentCodingWithQualityHeaderValue item in the collection.
public : IIterator<HttpContentCodingWithQualityHeaderValue> 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 HttpContentCodingWithQualityHeaderValue items in the collection. The iterator points to the first HttpContentCodingWithQualityHeaderValue item in the HttpContentCodingWithQualityHeaderValueCollection.
GetAt(UInt32) GetAt(UInt32) GetAt(UInt32) GetAt(UInt32)
Returns the HttpContentCodingWithQualityHeaderValue at the specified index in the collection.
public : HttpContentCodingWithQualityHeaderValue 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, HttpContentCodingWithQualityHeaderValue[]) GetMany(UInt32, HttpContentCodingWithQualityHeaderValue[]) GetMany(UInt32, HttpContentCodingWithQualityHeaderValue[]) GetMany(UInt32, HttpContentCodingWithQualityHeaderValue[])
Retrieves the HttpContentCodingWithQualityHeaderValue items that start at the specified index in the collection.
public : unsigned int GetMany(unsigned int startIndex, HttpContentCodingWithQualityHeaderValue[] 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 HttpContentCodingWithQualityHeaderValue items in the HttpContentCodingWithQualityHeaderValueCollection.
- items
- HttpContentCodingWithQualityHeaderValue[] HttpContentCodingWithQualityHeaderValue[] HttpContentCodingWithQualityHeaderValue[] HttpContentCodingWithQualityHeaderValue[]
An array of HttpContentCodingWithQualityHeaderValue items that start at startIndex in the HttpContentCodingWithQualityHeaderValueCollection.
The number of HttpContentCodingWithQualityHeaderValue items retrieved.
GetView() GetView() GetView() GetView()
Returns an immutable view of the HttpContentCodingWithQualityHeaderValueCollection.
public : IVectorView<HttpContentCodingWithQualityHeaderValue> 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 HttpContentCodingWithQualityHeaderValueCollection.
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(HttpContentCodingWithQualityHeaderValue, UInt32) IndexOf(HttpContentCodingWithQualityHeaderValue, UInt32) IndexOf(HttpContentCodingWithQualityHeaderValue, UInt32) IndexOf(HttpContentCodingWithQualityHeaderValue, UInt32)
Retrieves the index of an HttpContentCodingWithQualityHeaderValue in the collection.
public : PlatForm::Boolean IndexOf(HttpContentCodingWithQualityHeaderValue 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
- HttpContentCodingWithQualityHeaderValue HttpContentCodingWithQualityHeaderValue HttpContentCodingWithQualityHeaderValue HttpContentCodingWithQualityHeaderValue
The HttpContentCodingWithQualityHeaderValue to find in the HttpContentCodingWithQualityHeaderValueCollection.
- index
- unsigned int UInt32 UInt32 UInt32
The index of the HttpContentCodingWithQualityHeaderValue in the HttpContentCodingWithQualityHeaderValueCollection.
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 HttpContentCodingWithQualityHeaderValue 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, HttpContentCodingWithQualityHeaderValue) InsertAt(UInt32, HttpContentCodingWithQualityHeaderValue) InsertAt(UInt32, HttpContentCodingWithQualityHeaderValue) InsertAt(UInt32, HttpContentCodingWithQualityHeaderValue)
Inserts an HttpContentCodingWithQualityHeaderValue into the collection at the specified index.
public : void InsertAt(unsigned int index, HttpContentCodingWithQualityHeaderValue 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
- HttpContentCodingWithQualityHeaderValue HttpContentCodingWithQualityHeaderValue HttpContentCodingWithQualityHeaderValue HttpContentCodingWithQualityHeaderValue
The object to insert into the collection.
ParseAdd(String) ParseAdd(String) ParseAdd(String) ParseAdd(String)
Parses and adds an entry to the HttpContentCodingWithQualityHeaderValueCollection.
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 Accept-Encoding 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 HttpContentCodingWithQualityHeaderValueCollection.
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 HttpContentCodingWithQualityHeaderValue 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(HttpContentCodingWithQualityHeaderValue[]) ReplaceAll(HttpContentCodingWithQualityHeaderValue[]) ReplaceAll(HttpContentCodingWithQualityHeaderValue[]) ReplaceAll(HttpContentCodingWithQualityHeaderValue[])
Replaces all the HttpContentCodingWithQualityHeaderValue items in the collection with the specified HttpContentCodingWithQualityHeaderValue items.
public : void ReplaceAll(HttpContentCodingWithQualityHeaderValue[] items)This member is not implemented in C#This member is not implemented in VB.Net// You can use this method in JavaScript.
- items
- HttpContentCodingWithQualityHeaderValue[] HttpContentCodingWithQualityHeaderValue[] HttpContentCodingWithQualityHeaderValue[] HttpContentCodingWithQualityHeaderValue[]
The HttpContentCodingWithQualityHeaderValue items to add to the collection.
SetAt(UInt32, HttpContentCodingWithQualityHeaderValue) SetAt(UInt32, HttpContentCodingWithQualityHeaderValue) SetAt(UInt32, HttpContentCodingWithQualityHeaderValue) SetAt(UInt32, HttpContentCodingWithQualityHeaderValue)
Sets the HttpContentCodingWithQualityHeaderValue at the specified index in the collection.
public : void SetAt(unsigned int index, HttpContentCodingWithQualityHeaderValue 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 HttpContentCodingWithQualityHeaderValue.
ToString() ToString() ToString() ToString()
Returns a string that represents the current HttpContentCodingWithQualityHeaderValueCollection 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 HttpContentCodingWithQualityHeaderValueCollection.
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.