HubResult.State Property

.NET Framework 4

The caller state from this hub.

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

Syntax

'Declaration
<JsonPropertyAttribute("S")> _
Public Property State As IDictionary(Of String, JToken)
    Get 
    Set
'Usage
Dim instance As HubResult 
Dim value As IDictionary(Of String, JToken)

value = instance.State

instance.State = value
[JsonPropertyAttribute("S")]
public IDictionary<string, JToken> State { get; set; }
[JsonPropertyAttribute(L"S")]
public:
property IDictionary<String^, JToken^>^ State {
    IDictionary<String^, JToken^>^ get ();
    void set (IDictionary<String^, JToken^>^ value);
}
[<JsonPropertyAttribute("S")>]
member State : IDictionary<string, JToken> with get, set
function get State () : IDictionary<String, JToken>
function set State (value : IDictionary<String, JToken>)

Property Value

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

See Also

Reference

HubResult Class

Microsoft.AspNet.SignalR.Client.Hubs Namespace