8 references to NewCall
Microsoft.AspNetCore.Components.Server.Tests (2)
ProtectedBrowserStorageTest.cs (2)
370Invocations.Add((identifier, args, JSCallType.NewCall)); 376Invocations.Add((identifier, args, JSCallType.NewCall));
Microsoft.JSInterop (6)
Implementation\JSInProcessObjectReference.cs (1)
43return _jsRuntime.Invoke<IJSInProcessObjectReference>(identifier, Id, JSCallType.NewCall, args);
Implementation\JSObjectReference.cs (2)
57return _jsRuntime.InvokeAsync<IJSObjectReference>(Id, identifier, JSCallType.NewCall, args); 65return _jsRuntime.InvokeAsync<IJSObjectReference>(Id, identifier, JSCallType.NewCall, cancellationToken, args);
JSInProcessRuntime.cs (1)
32=> Invoke<IJSInProcessObjectReference>(identifier, WindowObjectId, JSCallType.NewCall, args);
JSRuntime.cs (2)
89=> InvokeAsync<IJSObjectReference>(WindowObjectId, identifier, JSCallType.NewCall, args); 93=> InvokeAsync<IJSObjectReference>(WindowObjectId, identifier, JSCallType.NewCall, cancellationToken, args);