Implemented interface member:
method
InvokeAsync<TValue>
Microsoft.JSInterop.IJSRuntime.InvokeAsync<TValue>(System.String, System.Object[])
9 references to InvokeAsync
Microsoft.JSInterop.Tests (9)
JSRuntimeTest.cs (9)
110
var unrelatedTask = runtime.
InvokeAsync
<string>("unrelated call", Array.Empty<object>());
111
var task = runtime.
InvokeAsync
<string>("test identifier", Array.Empty<object>());
135
var task = runtime.
InvokeAsync
<TestPoco>("test identifier", Array.Empty<object>());
159
var task = runtime.
InvokeAsync
<TestPoco>("test identifier", Array.Empty<object>());
185
var unrelatedTask = runtime.
InvokeAsync
<string>("unrelated call", Array.Empty<object>());
186
var task = runtime.
InvokeAsync
<string>("test identifier", Array.Empty<object>());
213
var unrelatedTask = runtime.
InvokeAsync
<string>("unrelated call", Array.Empty<object>());
214
var task = runtime.
InvokeAsync
<int>("test identifier", Array.Empty<object>());
243
var task = runtime.
InvokeAsync
<string>("test identifier", Array.Empty<object>());