1 implementation of InvokeAsync
Microsoft.JSInterop (1)
Implementation\JSObjectReference.cs (1)
44
public ValueTask<TValue>
InvokeAsync
<[DynamicallyAccessedMembers(JsonSerialized)] TValue>(string identifier, CancellationToken cancellationToken, object?[]? args)
6 references to InvokeAsync
Microsoft.JSInterop (6)
IJSObjectReference.cs (1)
18
/// consider using <see cref="
InvokeAsync
{TValue}(string, CancellationToken, object[])" />.
JSObjectReferenceExtensions.cs (5)
33
/// consider using <see cref="IJSObjectReference.
InvokeAsync
{TValue}(string, CancellationToken, object[])" />.
64
return jsObjectReference.
InvokeAsync
<TValue>(identifier, cancellationToken, args);
82
await jsObjectReference.
InvokeAsync
<IJSVoidResult>(identifier, cancellationToken, args);
100
return await jsObjectReference.
InvokeAsync
<TValue>(identifier, cancellationToken, args);
118
await jsObjectReference.
InvokeAsync
<IJSVoidResult>(identifier, cancellationToken, args);