JSObjectReferenceExtensions.InvokeAsync Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
InvokeAsync<TValue>(IJSObjectReference, String, Object[]) |
Invoca a função JavaScript especificada de forma assíncrona. JSRuntime aplicará tempos limite a essa operação com base no valor configurado em DefaultAsyncTimeout. Para expedir uma chamada com um tempo limite diferente ou sem tempo limite, considere usar InvokeAsync<TValue>(String, CancellationToken, Object[]). |
InvokeAsync<TValue>(IJSObjectReference, String, CancellationToken, Object[]) |
Invoca a função JavaScript especificada de forma assíncrona. |
InvokeAsync<TValue>(IJSObjectReference, String, TimeSpan, Object[]) |
Invoca a função JavaScript especificada de forma assíncrona. |
InvokeAsync<TValue>(IJSObjectReference, String, Object[])
Invoca a função JavaScript especificada de forma assíncrona.
JSRuntime aplicará tempos limite a essa operação com base no valor configurado em DefaultAsyncTimeout. Para expedir uma chamada com um tempo limite diferente ou sem tempo limite, considere usar InvokeAsync<TValue>(String, CancellationToken, Object[]).
public:
generic <typename TValue>
[System::Runtime::CompilerServices::Extension]
static System::Threading::Tasks::ValueTask<TValue> InvokeAsync(Microsoft::JSInterop::IJSObjectReference ^ jsObjectReference, System::String ^ identifier, ... cli::array <System::Object ^> ^ args);
public static System.Threading.Tasks.ValueTask<TValue> InvokeAsync<TValue> (this Microsoft.JSInterop.IJSObjectReference jsObjectReference, string identifier, params object?[] args);
public static System.Threading.Tasks.ValueTask<TValue> InvokeAsync<TValue> (this Microsoft.JSInterop.IJSObjectReference jsObjectReference, string identifier, params object?[]? args);
static member InvokeAsync : Microsoft.JSInterop.IJSObjectReference * string * obj[] -> System.Threading.Tasks.ValueTask<'Value>
<Extension()>
Public Function InvokeAsync(Of TValue) (jsObjectReference As IJSObjectReference, identifier As String, ParamArray args As Object()) As ValueTask(Of TValue)
Parâmetros de tipo
- TValue
O tipo de retorno serializável JSON.
Parâmetros
- jsObjectReference
- IJSObjectReference
- identifier
- String
Um identificador para a função a ser invocada. Por exemplo, o valor "someScope.someFunction"
invocará a função someScope.someFunction
na instância de destino.
- args
- Object[]
Argumentos serializáveis em JSON.
Retornos
Uma instância de TValue
obtida por JSON desserializando o valor retornado.
Aplica-se a
InvokeAsync<TValue>(IJSObjectReference, String, CancellationToken, Object[])
Invoca a função JavaScript especificada de forma assíncrona.
public:
generic <typename TValue>
[System::Runtime::CompilerServices::Extension]
static System::Threading::Tasks::ValueTask<TValue> InvokeAsync(Microsoft::JSInterop::IJSObjectReference ^ jsObjectReference, System::String ^ identifier, System::Threading::CancellationToken cancellationToken, ... cli::array <System::Object ^> ^ args);
public static System.Threading.Tasks.ValueTask<TValue> InvokeAsync<TValue> (this Microsoft.JSInterop.IJSObjectReference jsObjectReference, string identifier, System.Threading.CancellationToken cancellationToken, params object?[] args);
public static System.Threading.Tasks.ValueTask<TValue> InvokeAsync<TValue> (this Microsoft.JSInterop.IJSObjectReference jsObjectReference, string identifier, System.Threading.CancellationToken cancellationToken, params object?[]? args);
static member InvokeAsync : Microsoft.JSInterop.IJSObjectReference * string * System.Threading.CancellationToken * obj[] -> System.Threading.Tasks.ValueTask<'Value>
<Extension()>
Public Function InvokeAsync(Of TValue) (jsObjectReference As IJSObjectReference, identifier As String, cancellationToken As CancellationToken, ParamArray args As Object()) As ValueTask(Of TValue)
Parâmetros de tipo
- TValue
O tipo de retorno serializável JSON.
Parâmetros
- jsObjectReference
- IJSObjectReference
- identifier
- String
Um identificador para a função a ser invocada. Por exemplo, o valor "someScope.someFunction"
invocará a função someScope.someFunction
na instância de destino.
- cancellationToken
- CancellationToken
Um token de cancelamento para sinalizar o cancelamento da operação. Especificar esse parâmetro substituirá todos os cancelamentos padrão, como devido a tempos limite (DefaultAsyncTimeout) de serem aplicados.
- args
- Object[]
Argumentos serializáveis em JSON.
Retornos
Uma instância de TValue
obtida por JSON desserializando o valor retornado.
Aplica-se a
InvokeAsync<TValue>(IJSObjectReference, String, TimeSpan, Object[])
Invoca a função JavaScript especificada de forma assíncrona.
public:
generic <typename TValue>
[System::Runtime::CompilerServices::Extension]
static System::Threading::Tasks::ValueTask<TValue> InvokeAsync(Microsoft::JSInterop::IJSObjectReference ^ jsObjectReference, System::String ^ identifier, TimeSpan timeout, ... cli::array <System::Object ^> ^ args);
public static System.Threading.Tasks.ValueTask<TValue> InvokeAsync<TValue> (this Microsoft.JSInterop.IJSObjectReference jsObjectReference, string identifier, TimeSpan timeout, params object?[] args);
public static System.Threading.Tasks.ValueTask<TValue> InvokeAsync<TValue> (this Microsoft.JSInterop.IJSObjectReference jsObjectReference, string identifier, TimeSpan timeout, params object?[]? args);
static member InvokeAsync : Microsoft.JSInterop.IJSObjectReference * string * TimeSpan * obj[] -> System.Threading.Tasks.ValueTask<'Value>
<Extension()>
Public Function InvokeAsync(Of TValue) (jsObjectReference As IJSObjectReference, identifier As String, timeout As TimeSpan, ParamArray args As Object()) As ValueTask(Of TValue)
Parâmetros de tipo
- TValue
Parâmetros
- jsObjectReference
- IJSObjectReference
- identifier
- String
Um identificador para a função a ser invocada. Por exemplo, o valor "someScope.someFunction"
invocará a função someScope.someFunction
na instância de destino.
- timeout
- TimeSpan
A duração após a qual cancelar a operação assíncrona. Substitui tempos limite padrão (DefaultAsyncTimeout).
- args
- Object[]
Argumentos serializáveis em JSON.
Retornos
Um ValueTask que representa a operação de invocação assíncrona.