ClientProxyExtensions.SendAsync Method

Definition

Overloads

SendAsync(IClientProxy, String, Object, Object, Object, Object, Object, Object, Object, Object, Object, CancellationToken)

Invokes a method on the connection(s) represented by the IClientProxy instance. Does not wait for a response from the receiver.

SendAsync(IClientProxy, String, CancellationToken)

Invokes a method on the connection(s) represented by the IClientProxy instance. Does not wait for a response from the receiver.

SendAsync(IClientProxy, String, Object, CancellationToken)

Invokes a method on the connection(s) represented by the IClientProxy instance. Does not wait for a response from the receiver.

SendAsync(IClientProxy, String, Object, Object, CancellationToken)

Invokes a method on the connection(s) represented by the IClientProxy instance. Does not wait for a response from the receiver.

SendAsync(IClientProxy, String, Object, Object, Object, CancellationToken)

Invokes a method on the connection(s) represented by the IClientProxy instance. Does not wait for a response from the receiver.

SendAsync(IClientProxy, String, Object, Object, Object, Object, CancellationToken)

Invokes a method on the connection(s) represented by the IClientProxy instance. Does not wait for a response from the receiver.

SendAsync(IClientProxy, String, Object, Object, Object, Object, Object, CancellationToken)

Invokes a method on the connection(s) represented by the IClientProxy instance. Does not wait for a response from the receiver.

SendAsync(IClientProxy, String, Object, Object, Object, Object, Object, Object, CancellationToken)

Invokes a method on the connection(s) represented by the IClientProxy instance. Does not wait for a response from the receiver.

SendAsync(IClientProxy, String, Object, Object, Object, Object, Object, Object, Object, CancellationToken)

Invokes a method on the connection(s) represented by the IClientProxy instance. Does not wait for a response from the receiver.

SendAsync(IClientProxy, String, Object, Object, Object, Object, Object, Object, Object, Object, CancellationToken)

Invokes a method on the connection(s) represented by the IClientProxy instance. Does not wait for a response from the receiver.

SendAsync(IClientProxy, String, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, CancellationToken)

Invokes a method on the connection(s) represented by the IClientProxy instance. Does not wait for a response from the receiver.

SendAsync(IClientProxy, String, Object, Object, Object, Object, Object, Object, Object, Object, Object, CancellationToken)

Source:
ClientProxyExtensions.cs
Source:
ClientProxyExtensions.cs

Invokes a method on the connection(s) represented by the IClientProxy instance. Does not wait for a response from the receiver.

public static System.Threading.Tasks.Task SendAsync (this Microsoft.AspNetCore.SignalR.IClientProxy clientProxy, string method, object arg1, object arg2, object arg3, object arg4, object arg5, object arg6, object arg7, object arg8, object arg9, System.Threading.CancellationToken cancellationToken = default);
public static System.Threading.Tasks.Task SendAsync (this Microsoft.AspNetCore.SignalR.IClientProxy clientProxy, string method, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, object? arg6, object? arg7, object? arg8, object? arg9, System.Threading.CancellationToken cancellationToken = default);
static member SendAsync : Microsoft.AspNetCore.SignalR.IClientProxy * string * obj * obj * obj * obj * obj * obj * obj * obj * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task
<Extension()>
Public Function SendAsync (clientProxy As IClientProxy, method As String, arg1 As Object, arg2 As Object, arg3 As Object, arg4 As Object, arg5 As Object, arg6 As Object, arg7 As Object, arg8 As Object, arg9 As Object, Optional cancellationToken As CancellationToken = Nothing) As Task

Parameters

clientProxy
IClientProxy

The IClientProxy

method
String

The name of the method to invoke.

arg1
Object

The first argument.

arg2
Object

The second argument.

arg3
Object

The third argument.

arg4
Object

The fourth argument.

arg5
Object

The fifth argument.

arg6
Object

The sixth argument.

arg7
Object

The seventh argument.

arg8
Object

The eighth argument.

arg9
Object

The ninth argument.

cancellationToken
CancellationToken

The token to monitor for cancellation requests. The default value is None.

Returns

A Task that represents the asynchronous invoke.

Applies to

SendAsync(IClientProxy, String, CancellationToken)

Source:
ClientProxyExtensions.cs
Source:
ClientProxyExtensions.cs

Invokes a method on the connection(s) represented by the IClientProxy instance. Does not wait for a response from the receiver.

public static System.Threading.Tasks.Task SendAsync (this Microsoft.AspNetCore.SignalR.IClientProxy clientProxy, string method, System.Threading.CancellationToken cancellationToken = default);
static member SendAsync : Microsoft.AspNetCore.SignalR.IClientProxy * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task
<Extension()>
Public Function SendAsync (clientProxy As IClientProxy, method As String, Optional cancellationToken As CancellationToken = Nothing) As Task

Parameters

clientProxy
IClientProxy

The IClientProxy

method
String

The name of the method to invoke.

cancellationToken
CancellationToken

The token to monitor for cancellation requests. The default value is None.

Returns

A Task that represents the asynchronous invoke.

Applies to

SendAsync(IClientProxy, String, Object, CancellationToken)

Source:
ClientProxyExtensions.cs
Source:
ClientProxyExtensions.cs

Invokes a method on the connection(s) represented by the IClientProxy instance. Does not wait for a response from the receiver.

public static System.Threading.Tasks.Task SendAsync (this Microsoft.AspNetCore.SignalR.IClientProxy clientProxy, string method, object arg1, System.Threading.CancellationToken cancellationToken = default);
public static System.Threading.Tasks.Task SendAsync (this Microsoft.AspNetCore.SignalR.IClientProxy clientProxy, string method, object? arg1, System.Threading.CancellationToken cancellationToken = default);
static member SendAsync : Microsoft.AspNetCore.SignalR.IClientProxy * string * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task
<Extension()>
Public Function SendAsync (clientProxy As IClientProxy, method As String, arg1 As Object, Optional cancellationToken As CancellationToken = Nothing) As Task

Parameters

clientProxy
IClientProxy

The IClientProxy

method
String

The name of the method to invoke.

arg1
Object

The first argument.

cancellationToken
CancellationToken

The token to monitor for cancellation requests. The default value is None.

Returns

A Task that represents the asynchronous invoke.

Applies to

SendAsync(IClientProxy, String, Object, Object, CancellationToken)

Source:
ClientProxyExtensions.cs
Source:
ClientProxyExtensions.cs

Invokes a method on the connection(s) represented by the IClientProxy instance. Does not wait for a response from the receiver.

public static System.Threading.Tasks.Task SendAsync (this Microsoft.AspNetCore.SignalR.IClientProxy clientProxy, string method, object arg1, object arg2, System.Threading.CancellationToken cancellationToken = default);
public static System.Threading.Tasks.Task SendAsync (this Microsoft.AspNetCore.SignalR.IClientProxy clientProxy, string method, object? arg1, object? arg2, System.Threading.CancellationToken cancellationToken = default);
static member SendAsync : Microsoft.AspNetCore.SignalR.IClientProxy * string * obj * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task
<Extension()>
Public Function SendAsync (clientProxy As IClientProxy, method As String, arg1 As Object, arg2 As Object, Optional cancellationToken As CancellationToken = Nothing) As Task

Parameters

clientProxy
IClientProxy

The IClientProxy

method
String

The name of the method to invoke.

arg1
Object

The first argument.

arg2
Object

The second argument.

cancellationToken
CancellationToken

The token to monitor for cancellation requests. The default value is None.

Returns

A Task that represents the asynchronous invoke.

Applies to

SendAsync(IClientProxy, String, Object, Object, Object, CancellationToken)

Source:
ClientProxyExtensions.cs
Source:
ClientProxyExtensions.cs

Invokes a method on the connection(s) represented by the IClientProxy instance. Does not wait for a response from the receiver.

public static System.Threading.Tasks.Task SendAsync (this Microsoft.AspNetCore.SignalR.IClientProxy clientProxy, string method, object arg1, object arg2, object arg3, System.Threading.CancellationToken cancellationToken = default);
public static System.Threading.Tasks.Task SendAsync (this Microsoft.AspNetCore.SignalR.IClientProxy clientProxy, string method, object? arg1, object? arg2, object? arg3, System.Threading.CancellationToken cancellationToken = default);
static member SendAsync : Microsoft.AspNetCore.SignalR.IClientProxy * string * obj * obj * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task
<Extension()>
Public Function SendAsync (clientProxy As IClientProxy, method As String, arg1 As Object, arg2 As Object, arg3 As Object, Optional cancellationToken As CancellationToken = Nothing) As Task

Parameters

clientProxy
IClientProxy

The IClientProxy

method
String

The name of the method to invoke.

arg1
Object

The first argument.

arg2
Object

The second argument.

arg3
Object

The third argument.

cancellationToken
CancellationToken

The token to monitor for cancellation requests. The default value is None.

Returns

A Task that represents the asynchronous invoke.

Applies to

SendAsync(IClientProxy, String, Object, Object, Object, Object, CancellationToken)

Source:
ClientProxyExtensions.cs
Source:
ClientProxyExtensions.cs

Invokes a method on the connection(s) represented by the IClientProxy instance. Does not wait for a response from the receiver.

public static System.Threading.Tasks.Task SendAsync (this Microsoft.AspNetCore.SignalR.IClientProxy clientProxy, string method, object arg1, object arg2, object arg3, object arg4, System.Threading.CancellationToken cancellationToken = default);
public static System.Threading.Tasks.Task SendAsync (this Microsoft.AspNetCore.SignalR.IClientProxy clientProxy, string method, object? arg1, object? arg2, object? arg3, object? arg4, System.Threading.CancellationToken cancellationToken = default);
static member SendAsync : Microsoft.AspNetCore.SignalR.IClientProxy * string * obj * obj * obj * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task
<Extension()>
Public Function SendAsync (clientProxy As IClientProxy, method As String, arg1 As Object, arg2 As Object, arg3 As Object, arg4 As Object, Optional cancellationToken As CancellationToken = Nothing) As Task

Parameters

clientProxy
IClientProxy

The IClientProxy

method
String

The name of the method to invoke.

arg1
Object

The first argument.

arg2
Object

The second argument.

arg3
Object

The third argument.

arg4
Object

The fourth argument.

cancellationToken
CancellationToken

The token to monitor for cancellation requests. The default value is None.

Returns

A Task that represents the asynchronous invoke.

Applies to

SendAsync(IClientProxy, String, Object, Object, Object, Object, Object, CancellationToken)

Source:
ClientProxyExtensions.cs
Source:
ClientProxyExtensions.cs

Invokes a method on the connection(s) represented by the IClientProxy instance. Does not wait for a response from the receiver.

public static System.Threading.Tasks.Task SendAsync (this Microsoft.AspNetCore.SignalR.IClientProxy clientProxy, string method, object arg1, object arg2, object arg3, object arg4, object arg5, System.Threading.CancellationToken cancellationToken = default);
public static System.Threading.Tasks.Task SendAsync (this Microsoft.AspNetCore.SignalR.IClientProxy clientProxy, string method, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, System.Threading.CancellationToken cancellationToken = default);
static member SendAsync : Microsoft.AspNetCore.SignalR.IClientProxy * string * obj * obj * obj * obj * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task
<Extension()>
Public Function SendAsync (clientProxy As IClientProxy, method As String, arg1 As Object, arg2 As Object, arg3 As Object, arg4 As Object, arg5 As Object, Optional cancellationToken As CancellationToken = Nothing) As Task

Parameters

clientProxy
IClientProxy

The IClientProxy

method
String

The name of the method to invoke.

arg1
Object

The first argument.

arg2
Object

The second argument.

arg3
Object

The third argument.

arg4
Object

The fourth argument.

arg5
Object

The fifth argument.

cancellationToken
CancellationToken

The token to monitor for cancellation requests. The default value is None.

Returns

A Task that represents the asynchronous invoke.

Applies to

SendAsync(IClientProxy, String, Object, Object, Object, Object, Object, Object, CancellationToken)

Source:
ClientProxyExtensions.cs
Source:
ClientProxyExtensions.cs

Invokes a method on the connection(s) represented by the IClientProxy instance. Does not wait for a response from the receiver.

public static System.Threading.Tasks.Task SendAsync (this Microsoft.AspNetCore.SignalR.IClientProxy clientProxy, string method, object arg1, object arg2, object arg3, object arg4, object arg5, object arg6, System.Threading.CancellationToken cancellationToken = default);
public static System.Threading.Tasks.Task SendAsync (this Microsoft.AspNetCore.SignalR.IClientProxy clientProxy, string method, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, object? arg6, System.Threading.CancellationToken cancellationToken = default);
static member SendAsync : Microsoft.AspNetCore.SignalR.IClientProxy * string * obj * obj * obj * obj * obj * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task
<Extension()>
Public Function SendAsync (clientProxy As IClientProxy, method As String, arg1 As Object, arg2 As Object, arg3 As Object, arg4 As Object, arg5 As Object, arg6 As Object, Optional cancellationToken As CancellationToken = Nothing) As Task

Parameters

clientProxy
IClientProxy

The IClientProxy

method
String

The name of the method to invoke.

arg1
Object

The first argument.

arg2
Object

The second argument.

arg3
Object

The third argument.

arg4
Object

The fourth argument.

arg5
Object

The fifth argument.

arg6
Object

The sixth argument.

cancellationToken
CancellationToken

The token to monitor for cancellation requests. The default value is None.

Returns

A Task that represents the asynchronous invoke.

Applies to

SendAsync(IClientProxy, String, Object, Object, Object, Object, Object, Object, Object, CancellationToken)

Source:
ClientProxyExtensions.cs
Source:
ClientProxyExtensions.cs

Invokes a method on the connection(s) represented by the IClientProxy instance. Does not wait for a response from the receiver.

public static System.Threading.Tasks.Task SendAsync (this Microsoft.AspNetCore.SignalR.IClientProxy clientProxy, string method, object arg1, object arg2, object arg3, object arg4, object arg5, object arg6, object arg7, System.Threading.CancellationToken cancellationToken = default);
public static System.Threading.Tasks.Task SendAsync (this Microsoft.AspNetCore.SignalR.IClientProxy clientProxy, string method, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, object? arg6, object? arg7, System.Threading.CancellationToken cancellationToken = default);
static member SendAsync : Microsoft.AspNetCore.SignalR.IClientProxy * string * obj * obj * obj * obj * obj * obj * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task
<Extension()>
Public Function SendAsync (clientProxy As IClientProxy, method As String, arg1 As Object, arg2 As Object, arg3 As Object, arg4 As Object, arg5 As Object, arg6 As Object, arg7 As Object, Optional cancellationToken As CancellationToken = Nothing) As Task

Parameters

clientProxy
IClientProxy

The IClientProxy

method
String

The name of the method to invoke.

arg1
Object

The first argument.

arg2
Object

The second argument.

arg3
Object

The third argument.

arg4
Object

The fourth argument.

arg5
Object

The fifth argument.

arg6
Object

The sixth argument.

arg7
Object

The seventh argument.

cancellationToken
CancellationToken

The token to monitor for cancellation requests. The default value is None.

Returns

A Task that represents the asynchronous invoke.

Applies to

SendAsync(IClientProxy, String, Object, Object, Object, Object, Object, Object, Object, Object, CancellationToken)

Source:
ClientProxyExtensions.cs
Source:
ClientProxyExtensions.cs

Invokes a method on the connection(s) represented by the IClientProxy instance. Does not wait for a response from the receiver.

public static System.Threading.Tasks.Task SendAsync (this Microsoft.AspNetCore.SignalR.IClientProxy clientProxy, string method, object arg1, object arg2, object arg3, object arg4, object arg5, object arg6, object arg7, object arg8, System.Threading.CancellationToken cancellationToken = default);
public static System.Threading.Tasks.Task SendAsync (this Microsoft.AspNetCore.SignalR.IClientProxy clientProxy, string method, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, object? arg6, object? arg7, object? arg8, System.Threading.CancellationToken cancellationToken = default);
static member SendAsync : Microsoft.AspNetCore.SignalR.IClientProxy * string * obj * obj * obj * obj * obj * obj * obj * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task
<Extension()>
Public Function SendAsync (clientProxy As IClientProxy, method As String, arg1 As Object, arg2 As Object, arg3 As Object, arg4 As Object, arg5 As Object, arg6 As Object, arg7 As Object, arg8 As Object, Optional cancellationToken As CancellationToken = Nothing) As Task

Parameters

clientProxy
IClientProxy

The IClientProxy

method
String

The name of the method to invoke.

arg1
Object

The first argument.

arg2
Object

The second argument.

arg3
Object

The third argument.

arg4
Object

The fourth argument.

arg5
Object

The fifth argument.

arg6
Object

The sixth argument.

arg7
Object

The seventh argument.

arg8
Object

The eighth argument.

cancellationToken
CancellationToken

The token to monitor for cancellation requests. The default value is None.

Returns

A Task that represents the asynchronous invoke.

Applies to

SendAsync(IClientProxy, String, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, CancellationToken)

Source:
ClientProxyExtensions.cs
Source:
ClientProxyExtensions.cs

Invokes a method on the connection(s) represented by the IClientProxy instance. Does not wait for a response from the receiver.

public static System.Threading.Tasks.Task SendAsync (this Microsoft.AspNetCore.SignalR.IClientProxy clientProxy, string method, object arg1, object arg2, object arg3, object arg4, object arg5, object arg6, object arg7, object arg8, object arg9, object arg10, System.Threading.CancellationToken cancellationToken = default);
public static System.Threading.Tasks.Task SendAsync (this Microsoft.AspNetCore.SignalR.IClientProxy clientProxy, string method, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, object? arg6, object? arg7, object? arg8, object? arg9, object? arg10, System.Threading.CancellationToken cancellationToken = default);
static member SendAsync : Microsoft.AspNetCore.SignalR.IClientProxy * string * obj * obj * obj * obj * obj * obj * obj * obj * obj * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task
<Extension()>
Public Function SendAsync (clientProxy As IClientProxy, method As String, arg1 As Object, arg2 As Object, arg3 As Object, arg4 As Object, arg5 As Object, arg6 As Object, arg7 As Object, arg8 As Object, arg9 As Object, arg10 As Object, Optional cancellationToken As CancellationToken = Nothing) As Task

Parameters

clientProxy
IClientProxy

The IClientProxy

method
String

The name of the method to invoke.

arg1
Object

The first argument.

arg2
Object

The second argument.

arg3
Object

The third argument.

arg4
Object

The fourth argument.

arg5
Object

The fifth argument.

arg6
Object

The sixth argument.

arg7
Object

The seventh argument.

arg8
Object

The eighth argument.

arg9
Object

The ninth argument.

arg10
Object

The tenth argument.

cancellationToken
CancellationToken

The token to monitor for cancellation requests. The default value is None.

Returns

A Task that represents the asynchronous invoke.

Applies to