4 instantiations of DotNetInvocationResult
Microsoft.JSInterop (4)
Infrastructure\DotNetDispatcher.cs (4)
112jsRuntime.EndInvokeDotNet(invocationInfo, new DotNetInvocationResult(syncException.SourceException, "InvocationFailure")); 136var dispatchResult = new DotNetInvocationResult(syncResultJson); 147var dispatchResult = new DotNetInvocationResult(exceptionDispatchInfo.SourceException, "InvocationFailure"); 153jsRuntime.EndInvokeDotNet(invocationInfo, new DotNetInvocationResult(resultJson));
5 references to DotNetInvocationResult
Microsoft.AspNetCore.Components.Server (1)
Circuits\RemoteJSRuntime.cs (1)
65protected override void EndInvokeDotNet(DotNetInvocationInfo invocationInfo, in DotNetInvocationResult invocationResult)
Microsoft.JSInterop (4)
Infrastructure\DotNetDispatcher.cs (2)
136var dispatchResult = new DotNetInvocationResult(syncResultJson); 147var dispatchResult = new DotNetInvocationResult(exceptionDispatchInfo.SourceException, "InvocationFailure");
JSRuntime.cs (2)
218/// <param name="invocationResult">The <see cref="DotNetInvocationResult"/>.</param> 221in DotNetInvocationResult invocationResult);