HostContext.Items Property
.NET Framework 4
Namespace: Microsoft.AspNet.SignalR.Hosting
Assembly: Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)
Syntax
'Declaration
Public Property Items As IDictionary(Of String, Object)
Get
Private Set
'Usage
Dim instance As HostContext
Dim value As IDictionary(Of String, Object)
value = instance.Items
public IDictionary<string, Object> Items { get; private set; }
public:
property IDictionary<String^, Object^>^ Items {
IDictionary<String^, Object^>^ get ();
private: void set (IDictionary<String^, Object^>^ value);
}
member Items : IDictionary<string, Object> with get, private set
function get Items () : IDictionary<String, Object>
private function set Items (value : IDictionary<String, Object>)
Property Value
Type: System.Collections.Generic.IDictionary<String, Object>