Share via


HubRequest.State Property

.NET Framework 4

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

Syntax

'Declaration
Public Property State As IDictionary(Of String, Object)
    Get 
    Set
'Usage
Dim instance As HubRequest 
Dim value As IDictionary(Of String, Object)

value = instance.State

instance.State = value
public IDictionary<string, Object> State { get; set; }
public:
property IDictionary<String^, Object^>^ State {
    IDictionary<String^, Object^>^ get ();
    void set (IDictionary<String^, Object^>^ value);
}
member State : IDictionary<string, Object> with get, set
function get State () : IDictionary<String, Object>
function set State (value : IDictionary<String, Object>)

Property Value

Type: System.Collections.Generic.IDictionary<String, Object>
Returns IDictionary<TKey, TValue>.

See Also

Reference

HubRequest Class

Microsoft.AspNet.SignalR.Hubs Namespace