HubResponse.Result Property
.NET Framework 4
The result of the invocation.
Namespace: Microsoft.AspNet.SignalR.Hubs
Assembly: Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)
Syntax
'Declaration
<JsonPropertyAttribute("R", NullValueHandling := NullValueHandling.Ignore)> _
Public Property Result As Object
Get
Set
'Usage
Dim instance As HubResponse
Dim value As Object
value = instance.Result
instance.Result = value
[JsonPropertyAttribute("R", NullValueHandling = NullValueHandling.Ignore)]
public Object Result { get; set; }
[JsonPropertyAttribute(L"R", NullValueHandling = NullValueHandling::Ignore)]
public:
property Object^ Result {
Object^ get ();
void set (Object^ value);
}
[<JsonPropertyAttribute("R", NullValueHandling = NullValueHandling.Ignore)>]
member Result : Object with get, set
function get Result () : Object
function set Result (value : Object)
Property Value
Type: System.Object
Returns Object.