HeaderDictionary.IDictionary<String, String[]>.Item Property

Gets or sets an ICollection that contains the keys in the HeaderDictionary.

Namespace:  Microsoft.Owin
Assembly:  Microsoft.Owin (in Microsoft.Owin.dll)

Syntax

'Declaration
Private Property Item ( _
    key As String _
) As String() Implements IDictionary(Of String, String()).Item 
    Get 
    Set
'Usage
Dim instance As HeaderDictionary 
Dim key As String 
Dim value As String()

value = CType(instance, IDictionary(Of String, String())).Item(key)

CType(instance, IDictionary(Of String, String())).Item(key) = value
string[] IDictionary<string, string[]>.this[
    string key
] { get; set; }
private:
virtual property array<String^>^ Item[String^ key] {
    array<String^>^ get (String^ key) sealed = IDictionary<String^, array<String^>^>::Item::get;
    void set (String^ key, array<String^>^ value) sealed = IDictionary<String^, array<String^>^>::Item::set;
}
private abstract Item : string[] with get, set 
private override Item : string[] with get, set
JScript supports the use of explicit interface implementations, but not the declarations of new ones.

Parameters

Property Value

Type: System.String[]
An ICollection that contains the keys in the HeaderDictionary.

Implements

IDictionary<TKey, TValue>.Item[TKey]

See Also

Reference

HeaderDictionary Class

Microsoft.Owin Namespace