4 implementations of InvokeNewAsync
Microsoft.AspNetCore.Components.Endpoints (1)
DependencyInjection\UnsupportedJavaScriptRuntime.cs (1)
23public ValueTask<IJSObjectReference> InvokeNewAsync(string identifier, CancellationToken cancellationToken, object?[]? args)
Microsoft.AspNetCore.Components.Server.Tests (1)
ProtectedBrowserStorageTest.cs (1)
374public ValueTask<IJSObjectReference> InvokeNewAsync(string identifier, CancellationToken cancellationToken, object[] args)
Microsoft.AspNetCore.Components.WebAssembly.Tests (1)
PullFromJSDataStreamTest.cs (1)
139public ValueTask<IJSObjectReference> InvokeNewAsync(string identifier, CancellationToken cancellationToken, object[] args)
Microsoft.JSInterop (1)
JSRuntime.cs (1)
92public ValueTask<IJSObjectReference> InvokeNewAsync(string identifier, CancellationToken cancellationToken, object?[]? args)
2 references to InvokeNewAsync
Microsoft.JSInterop (2)
JSRuntimeExtensions.cs (2)
150return jsRuntime.InvokeNewAsync(identifier, cancellationToken, args); 168return jsRuntime.InvokeNewAsync(identifier, cancellationToken, args);