ClientProxyExtensions.InvokeAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
InvokeAsync<T>(ISingleClientProxy, String, CancellationToken)
- Source:
- ClientProxyExtensions.cs
Invokes a method on the connection represented by the ISingleClientProxy instance and waits for a response.
public static System.Threading.Tasks.Task<T> InvokeAsync<T> (this Microsoft.AspNetCore.SignalR.ISingleClientProxy clientProxy, string method, System.Threading.CancellationToken cancellationToken);
static member InvokeAsync : Microsoft.AspNetCore.SignalR.ISingleClientProxy * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'T>
<Extension()>
Public Function InvokeAsync(Of T) (clientProxy As ISingleClientProxy, method As String, cancellationToken As CancellationToken) As Task(Of T)
Type Parameters
- T
Parameters
- clientProxy
- ISingleClientProxy
The ISingleClientProxy.
- 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
InvokeAsync<T>(ISingleClientProxy, String, Object, Object, Object, Object, Object, Object, Object, Object, Object, CancellationToken)
- Source:
- ClientProxyExtensions.cs
Invokes a method on the connection represented by the ISingleClientProxy instance and waits for a response.
public static System.Threading.Tasks.Task<T> InvokeAsync<T> (this Microsoft.AspNetCore.SignalR.ISingleClientProxy 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);
static member InvokeAsync : Microsoft.AspNetCore.SignalR.ISingleClientProxy * string * obj * obj * obj * obj * obj * obj * obj * obj * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'T>
<Extension()>
Public Function InvokeAsync(Of T) (clientProxy As ISingleClientProxy, 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, cancellationToken As CancellationToken) As Task(Of T)
Type Parameters
- T
Parameters
- clientProxy
- ISingleClientProxy
The ISingleClientProxy.
- 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
InvokeAsync<T>(ISingleClientProxy, String, Object, Object, Object, Object, Object, Object, Object, Object, CancellationToken)
- Source:
- ClientProxyExtensions.cs
Invokes a method on the connection represented by the ISingleClientProxy instance and waits for a response.
public static System.Threading.Tasks.Task<T> InvokeAsync<T> (this Microsoft.AspNetCore.SignalR.ISingleClientProxy clientProxy, string method, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, object? arg6, object? arg7, object? arg8, System.Threading.CancellationToken cancellationToken);
static member InvokeAsync : Microsoft.AspNetCore.SignalR.ISingleClientProxy * string * obj * obj * obj * obj * obj * obj * obj * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'T>
<Extension()>
Public Function InvokeAsync(Of T) (clientProxy As ISingleClientProxy, 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, cancellationToken As CancellationToken) As Task(Of T)
Type Parameters
- T
Parameters
- clientProxy
- ISingleClientProxy
The ISingleClientProxy.
- 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
InvokeAsync<T>(ISingleClientProxy, String, Object, Object, Object, Object, Object, Object, Object, CancellationToken)
- Source:
- ClientProxyExtensions.cs
Invokes a method on the connection represented by the ISingleClientProxy instance and waits for a response.
public static System.Threading.Tasks.Task<T> InvokeAsync<T> (this Microsoft.AspNetCore.SignalR.ISingleClientProxy clientProxy, string method, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, object? arg6, object? arg7, System.Threading.CancellationToken cancellationToken);
static member InvokeAsync : Microsoft.AspNetCore.SignalR.ISingleClientProxy * string * obj * obj * obj * obj * obj * obj * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'T>
<Extension()>
Public Function InvokeAsync(Of T) (clientProxy As ISingleClientProxy, method As String, arg1 As Object, arg2 As Object, arg3 As Object, arg4 As Object, arg5 As Object, arg6 As Object, arg7 As Object, cancellationToken As CancellationToken) As Task(Of T)
Type Parameters
- T
Parameters
- clientProxy
- ISingleClientProxy
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
InvokeAsync<T>(ISingleClientProxy, String, Object, Object, Object, Object, Object, Object, CancellationToken)
- Source:
- ClientProxyExtensions.cs
Invokes a method on the connection represented by the ISingleClientProxy instance and waits for a response.
public static System.Threading.Tasks.Task<T> InvokeAsync<T> (this Microsoft.AspNetCore.SignalR.ISingleClientProxy clientProxy, string method, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, object? arg6, System.Threading.CancellationToken cancellationToken);
static member InvokeAsync : Microsoft.AspNetCore.SignalR.ISingleClientProxy * string * obj * obj * obj * obj * obj * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'T>
<Extension()>
Public Function InvokeAsync(Of T) (clientProxy As ISingleClientProxy, method As String, arg1 As Object, arg2 As Object, arg3 As Object, arg4 As Object, arg5 As Object, arg6 As Object, cancellationToken As CancellationToken) As Task(Of T)
Type Parameters
- T
Parameters
- clientProxy
- ISingleClientProxy
The ISingleClientProxy.
- 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
InvokeAsync<T>(ISingleClientProxy, String, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, CancellationToken)
- Source:
- ClientProxyExtensions.cs
Invokes a method on the connection represented by the ISingleClientProxy instance and waits for a response.
public static System.Threading.Tasks.Task<T> InvokeAsync<T> (this Microsoft.AspNetCore.SignalR.ISingleClientProxy 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);
static member InvokeAsync : Microsoft.AspNetCore.SignalR.ISingleClientProxy * string * obj * obj * obj * obj * obj * obj * obj * obj * obj * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'T>
<Extension()>
Public Function InvokeAsync(Of T) (clientProxy As ISingleClientProxy, 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, cancellationToken As CancellationToken) As Task(Of T)
Type Parameters
- T
Parameters
- clientProxy
- ISingleClientProxy
The ISingleClientProxy.
- 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
InvokeAsync<T>(ISingleClientProxy, String, Object, Object, Object, Object, CancellationToken)
- Source:
- ClientProxyExtensions.cs
Invokes a method on the connection represented by the ISingleClientProxy instance and waits for a response.
public static System.Threading.Tasks.Task<T> InvokeAsync<T> (this Microsoft.AspNetCore.SignalR.ISingleClientProxy clientProxy, string method, object? arg1, object? arg2, object? arg3, object? arg4, System.Threading.CancellationToken cancellationToken);
static member InvokeAsync : Microsoft.AspNetCore.SignalR.ISingleClientProxy * string * obj * obj * obj * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'T>
<Extension()>
Public Function InvokeAsync(Of T) (clientProxy As ISingleClientProxy, method As String, arg1 As Object, arg2 As Object, arg3 As Object, arg4 As Object, cancellationToken As CancellationToken) As Task(Of T)
Type Parameters
- T
Parameters
- clientProxy
- ISingleClientProxy
The ISingleClientProxy.
- 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
InvokeAsync<T>(ISingleClientProxy, String, Object, Object, Object, CancellationToken)
- Source:
- ClientProxyExtensions.cs
Invokes a method on the connection represented by the ISingleClientProxy instance and waits for a response.
public static System.Threading.Tasks.Task<T> InvokeAsync<T> (this Microsoft.AspNetCore.SignalR.ISingleClientProxy clientProxy, string method, object? arg1, object? arg2, object? arg3, System.Threading.CancellationToken cancellationToken);
static member InvokeAsync : Microsoft.AspNetCore.SignalR.ISingleClientProxy * string * obj * obj * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'T>
<Extension()>
Public Function InvokeAsync(Of T) (clientProxy As ISingleClientProxy, method As String, arg1 As Object, arg2 As Object, arg3 As Object, cancellationToken As CancellationToken) As Task(Of T)
Type Parameters
- T
Parameters
- clientProxy
- ISingleClientProxy
The ISingleClientProxy.
- 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
InvokeAsync<T>(ISingleClientProxy, String, Object, Object, CancellationToken)
- Source:
- ClientProxyExtensions.cs
Invokes a method on the connection represented by the ISingleClientProxy instance and waits for a response.
public static System.Threading.Tasks.Task<T> InvokeAsync<T> (this Microsoft.AspNetCore.SignalR.ISingleClientProxy clientProxy, string method, object? arg1, object? arg2, System.Threading.CancellationToken cancellationToken);
static member InvokeAsync : Microsoft.AspNetCore.SignalR.ISingleClientProxy * string * obj * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'T>
<Extension()>
Public Function InvokeAsync(Of T) (clientProxy As ISingleClientProxy, method As String, arg1 As Object, arg2 As Object, cancellationToken As CancellationToken) As Task(Of T)
Type Parameters
- T
Parameters
- clientProxy
- ISingleClientProxy
The ISingleClientProxy.
- 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
InvokeAsync<T>(ISingleClientProxy, String, Object, CancellationToken)
- Source:
- ClientProxyExtensions.cs
Invokes a method on the connection represented by the ISingleClientProxy instance and waits for a response.
public static System.Threading.Tasks.Task<T> InvokeAsync<T> (this Microsoft.AspNetCore.SignalR.ISingleClientProxy clientProxy, string method, object? arg1, System.Threading.CancellationToken cancellationToken);
static member InvokeAsync : Microsoft.AspNetCore.SignalR.ISingleClientProxy * string * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'T>
<Extension()>
Public Function InvokeAsync(Of T) (clientProxy As ISingleClientProxy, method As String, arg1 As Object, cancellationToken As CancellationToken) As Task(Of T)
Type Parameters
- T
Parameters
- clientProxy
- ISingleClientProxy
The ISingleClientProxy.
- 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
InvokeAsync<T>(ISingleClientProxy, String, Object, Object, Object, Object, Object, CancellationToken)
- Source:
- ClientProxyExtensions.cs
Invokes a method on the connection represented by the ISingleClientProxy instance and waits for a response.
public static System.Threading.Tasks.Task<T> InvokeAsync<T> (this Microsoft.AspNetCore.SignalR.ISingleClientProxy clientProxy, string method, object? arg1, object? arg2, object? arg3, object? arg4, object? arg5, System.Threading.CancellationToken cancellationToken);
static member InvokeAsync : Microsoft.AspNetCore.SignalR.ISingleClientProxy * string * obj * obj * obj * obj * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'T>
<Extension()>
Public Function InvokeAsync(Of T) (clientProxy As ISingleClientProxy, method As String, arg1 As Object, arg2 As Object, arg3 As Object, arg4 As Object, arg5 As Object, cancellationToken As CancellationToken) As Task(Of T)
Type Parameters
- T
Parameters
- clientProxy
- ISingleClientProxy
The ISingleClientProxy.
- 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.