IndexedDictionary<TKey, TValue>.Item Property

.NET Framework 4

Namespace:  Microsoft.AspNet.SignalR.Messaging
Assembly:  Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)

Syntax

'Declaration
Public ReadOnly Default Property Item ( _
    key As TKey _
) As LinkedListNode(Of KeyValuePair(Of TKey, TValue))
    Get
'Usage
Dim instance As IndexedDictionary 
Dim key As TKey
Dim value As LinkedListNode(Of KeyValuePair(Of TKey, TValue))

value = instance(key)
public LinkedListNode<KeyValuePair<TKey, TValue>> this[
    TKey key
] { get; }
public:
property LinkedListNode<KeyValuePair<TKey, TValue>>^ default[TKey key] {
    LinkedListNode<KeyValuePair<TKey, TValue>>^ get (TKey key);
}
member Item : LinkedListNode<KeyValuePair<'TKey, 'TValue>>
JScript supports the use of indexed properties, but not the declaration of new ones.

Parameters

Property Value

Type: System.Collections.Generic.LinkedListNode<KeyValuePair<TKey, TValue>>
Returns LinkedListNode<T>.

See Also

Reference

IndexedDictionary<TKey, TValue> Class

Microsoft.AspNet.SignalR.Messaging Namespace