8 references to NewCall
Microsoft.AspNetCore.Components.Server.Tests (2)
ProtectedBrowserStorageTest.cs (2)
370
Invocations.Add((identifier, args, JSCallType.
NewCall
));
376
Invocations.Add((identifier, args, JSCallType.
NewCall
));
Microsoft.JSInterop (6)
Implementation\JSInProcessObjectReference.cs (1)
43
return _jsRuntime.Invoke<IJSInProcessObjectReference>(identifier, Id, JSCallType.
NewCall
, args);
Implementation\JSObjectReference.cs (2)
57
return _jsRuntime.InvokeAsync<IJSObjectReference>(Id, identifier, JSCallType.
NewCall
, args);
65
return _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);