34 references to DotNetInvocationInfo
Microsoft.AspNetCore.Components.Server (1)
Circuits\CircuitHost.cs (1)
378
var invocationInfo = new
DotNetInvocationInfo
(assemblyName, methodIdentifier, dotNetObjectId, callId);
Microsoft.AspNetCore.Components.WebAssembly (2)
Services\DefaultWebAssemblyJSRuntime.cs (2)
50
var callInfo = new
DotNetInvocationInfo
(assemblyName, methodIdentifier, dotNetObjectId, callId: null);
86
var callInfo = new
DotNetInvocationInfo
(assemblyName, methodIdentifier, dotNetObjectId, callId);
Microsoft.AspNetCore.Components.WebView (1)
IpcReceiver.cs (1)
79
new
DotNetInvocationInfo
(assemblyName, methodIdentifier, dotNetObjectId, callId),
Microsoft.JSInterop.Tests (30)
Infrastructure\DotNetDispatcherTest.cs (29)
21
() => DotNetDispatcher.Invoke(new TestJSRuntime(), new
DotNetInvocationInfo
(assemblyName, "SomeMethod", default, default), "[]"),
33
() => DotNetDispatcher.Invoke(new TestJSRuntime(), new
DotNetInvocationInfo
("SomeAssembly", methodIdentifier, default, default), "[]"),
44
DotNetDispatcher.Invoke(new TestJSRuntime(), new
DotNetInvocationInfo
(assemblyName, "SomeMethod", default, default), null);
66
DotNetDispatcher.Invoke(new TestJSRuntime(), new
DotNetInvocationInfo
(thisAssemblyName, methodIdentifier, default, default), null);
78
var resultJson = DotNetDispatcher.Invoke(jsRuntime, new
DotNetInvocationInfo
(thisAssemblyName, "InvocableStaticVoid", default, default), null);
90
var resultJson = DotNetDispatcher.Invoke(jsRuntime, new
DotNetInvocationInfo
(thisAssemblyName, "InvocableStaticNonVoid", default, default), null);
103
var resultJson = DotNetDispatcher.Invoke(jsRuntime, new
DotNetInvocationInfo
(thisAssemblyName, nameof(SomePublicType.InvokableMethodWithoutCustomIdentifier), default, default), null);
129
var resultJson = DotNetDispatcher.Invoke(jsRuntime, new
DotNetInvocationInfo
(thisAssemblyName, "InvocableStaticWithParams", default, default), argsJson);
170
DotNetDispatcher.Invoke(jsRuntime, new
DotNetInvocationInfo
(thisAssemblyName, method, default, default), argsJson));
184
var resultJson = DotNetDispatcher.Invoke(jsRuntime, new
DotNetInvocationInfo
(null, "InvokableInstanceVoid", 1, default), null);
201
var resultJson = DotNetDispatcher.Invoke(jsRuntime, new
DotNetInvocationInfo
(null, "BaseClassInvokableInstanceVoid", 1, default), null);
218
DotNetDispatcher.BeginInvokeDotNet(jsRuntime, new
DotNetInvocationInfo
(null, "__Dispose", objectRef.ObjectId, default), null);
239
() => DotNetDispatcher.Invoke(jsRuntime, new
DotNetInvocationInfo
(null, "InvokableInstanceVoid", 1, default), null));
258
() => DotNetDispatcher.Invoke(jsRuntime, new
DotNetInvocationInfo
(null, "InvokableInstanceVoid", 1, default), null));
458
var resultJson = DotNetDispatcher.Invoke(jsRuntime, new
DotNetInvocationInfo
(null, "InvokableInstanceMethod", 1, default), argsJson);
477
var resultJson = DotNetDispatcher.Invoke(jsRuntime, new
DotNetInvocationInfo
(null, nameof(GenericType<int>.EchoStringParameter), 1, default), argsJson);
493
var resultJson = DotNetDispatcher.Invoke(jsRuntime, new
DotNetInvocationInfo
(null, nameof(GenericType<string>.EchoParameter), 1, default), argsJson);
506
var ex = Assert.Throws<ArgumentException>(() => DotNetDispatcher.Invoke(jsRuntime, new
DotNetInvocationInfo
(thisAssemblyName, methodIdentifier, 0, default), "[7]"));
521
var ex = Assert.Throws<ArgumentException>(() => DotNetDispatcher.Invoke(jsRuntime, new
DotNetInvocationInfo
(null, methodIdentifier, 1, default), argsJson));
536
DotNetDispatcher.Invoke(jsRuntime, new
DotNetInvocationInfo
(null, nameof(GenericType<int>.EchoParameter), 1, default), argsJson));
553
DotNetDispatcher.Invoke(jsRuntime, new
DotNetInvocationInfo
(thisAssemblyName, "InvocableStaticWithParams", default, default), argsJson);
576
DotNetDispatcher.Invoke(jsRuntime, new
DotNetInvocationInfo
(thisAssemblyName, "InvocableStaticWithParams", default, default), argsJson);
603
DotNetDispatcher.BeginInvokeDotNet(jsRuntime, new
DotNetInvocationInfo
(null, "InvokableAsyncMethod", 1, callId), argsJson);
642
DotNetDispatcher.BeginInvokeDotNet(jsRuntime, new
DotNetInvocationInfo
(null,
666
DotNetDispatcher.BeginInvokeDotNet(jsRuntime, new
DotNetInvocationInfo
(null,
684
DotNetDispatcher.BeginInvokeDotNet(jsRuntime, new
DotNetInvocationInfo
(thisAssemblyName, nameof(ThrowingClass.ThrowingMethod), default, callId), default);
706
DotNetDispatcher.BeginInvokeDotNet(jsRuntime, new
DotNetInvocationInfo
(thisAssemblyName, nameof(ThrowingClass.AsyncThrowingMethod), default, callId), default);
726
DotNetDispatcher.BeginInvokeDotNet(jsRuntime, new
DotNetInvocationInfo
(thisAssemblyName, "InvocableStaticWithParams", default, callId), "<xml>not json</xml>");
744
DotNetDispatcher.BeginInvokeDotNet(jsRuntime, new
DotNetInvocationInfo
(null, "InvokableInstanceVoid", 1, callId), null);
JSRuntimeTest.cs (1)
303
var invocation = new
DotNetInvocationInfo
("TestAssembly", "TestMethod", 0, "0");