Connection.Items Property
.NET Framework 4
Gets a dictionary for storing state for the connection.
Namespace: Microsoft.AspNet.SignalR.Client
Assembly: Microsoft.AspNet.SignalR.Client (in Microsoft.AspNet.SignalR.Client.dll)
Syntax
'Declaration
Public Property Items As IDictionary(Of String, Object)
Get
Private Set
'Usage
Dim instance As Connection
Dim value As IDictionary(Of String, Object)
value = instance.Items
public IDictionary<string, Object> Items { get; private set; }
public:
virtual property IDictionary<String^, Object^>^ Items {
IDictionary<String^, Object^>^ get () sealed;
private: void set (IDictionary<String^, Object^>^ value) sealed;
}
abstract Items : IDictionary<string, Object> with get, private set
override Items : IDictionary<string, Object> with get, private set
final function get Items () : IDictionary<String, Object>
private final function set Items (value : IDictionary<String, Object>)
Property Value
Type: System.Collections.Generic.IDictionary<String, Object>
Returns IDictionary<TKey, TValue>.