ClientHubInvocation.Args Property

.NET Framework 4

The argument list the client-side hub method will be called with.

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

Syntax

'Declaration
<JsonPropertyAttribute("A")> _
Public Property Args As Object()
    Get 
    Set
'Usage
Dim instance As ClientHubInvocation 
Dim value As Object()

value = instance.Args

instance.Args = value
[JsonPropertyAttribute("A")]
public Object[] Args { get; set; }
[JsonPropertyAttribute(L"A")]
public:
property array<Object^>^ Args {
    array<Object^>^ get ();
    void set (array<Object^>^ value);
}
[<JsonPropertyAttribute("A")>]
member Args : Object[] with get, set
function get Args () : Object[]
function set Args (value : Object[])

Property Value

Type: System.Object[]
Returns Object.

See Also

Reference

ClientHubInvocation Class

Microsoft.AspNet.SignalR.Hubs Namespace