HubInvocation.State Property
.NET Framework 4
Namespace: Microsoft.AspNet.SignalR.Client.Hubs
Assembly: Microsoft.AspNet.SignalR.Client (in Microsoft.AspNet.SignalR.Client.dll)
Syntax
'Declaration
<JsonPropertyAttribute("S", NullValueHandling := NullValueHandling.Ignore)> _
Public Property State As Dictionary(Of String, JToken)
Get
Set
'Usage
Dim instance As HubInvocation
Dim value As Dictionary(Of String, JToken)
value = instance.State
instance.State = value
[JsonPropertyAttribute("S", NullValueHandling = NullValueHandling.Ignore)]
public Dictionary<string, JToken> State { get; set; }
[JsonPropertyAttribute(L"S", NullValueHandling = NullValueHandling::Ignore)]
public:
property Dictionary<String^, JToken^>^ State {
Dictionary<String^, JToken^>^ get ();
void set (Dictionary<String^, JToken^>^ value);
}
[<JsonPropertyAttribute("S", NullValueHandling = NullValueHandling.Ignore)>]
member State : Dictionary<string, JToken> with get, set
function get State () : Dictionary<String, JToken>
function set State (value : Dictionary<String, JToken>)
Property Value
Type: System.Collections.Generic.Dictionary<String, JToken>
Returns Dictionary<TKey, TValue>.