4 writes to ArgsJson
Microsoft.AspNetCore.Components.Server (1)
Circuits\RemoteJSRuntime.cs (1)
116ArgsJson = argsJson,
Microsoft.AspNetCore.Components.WebView (1)
Services\WebViewJSRuntime.cs (1)
37ArgsJson = argsJson,
Microsoft.JSInterop (2)
JSInProcessRuntime.cs (1)
56ArgsJson = argsJson,
JSRuntime.cs (1)
162ArgsJson = argsJson,
13 references to ArgsJson
Microsoft.AspNetCore.Components.Server (1)
Circuits\RemoteJSRuntime.cs (1)
147invocationInfo.ArgsJson,
Microsoft.AspNetCore.Components.WebView (1)
IpcSender.cs (1)
58invocationInfo.ArgsJson,
Microsoft.JSInterop (2)
JSInProcessRuntime.cs (1)
101return InvokeJS(invocationInfo.Identifier, invocationInfo.ArgsJson, invocationInfo.ResultType, invocationInfo.TargetInstanceId);
JSRuntime.cs (1)
211BeginInvokeJS(invocationInfo.AsyncHandle, invocationInfo.Identifier, invocationInfo.ArgsJson, invocationInfo.ResultType, invocationInfo.TargetInstanceId);
Microsoft.JSInterop.Tests (7)
Infrastructure\DotNetDispatcherTest.cs (2)
1087LastInvocationArgsJson = invocationInfo.ArgsJson; 1101LastInvocationArgsJson = invocationInfo.ArgsJson;
JSInProcessRuntimeTest.cs (2)
28Assert.Equal("[\"arg1\",123,true]", call.ArgsJson); 56Assert.Equal("[{\"__dotNetObject\":1},{\"obj2\":{\"__dotNetObject\":2},\"obj3\":{\"__dotNetObject\":3}}]", call.ArgsJson);
JSRuntimeTest.cs (3)
29Assert.Equal("[\"arg1\",123,true]", call.ArgsJson); 34Assert.Equal("[\"some other arg\"]", call.ArgsJson); 286Assert.Equal("[{\"__dotNetObject\":1},{\"obj2\":{\"__dotNetObject\":2},\"obj3\":{\"__dotNetObject\":3},\"obj1SameRef\":{\"__dotNetObject\":1},\"obj1DifferentRef\":{\"__dotNetObject\":4}}]", call.ArgsJson);
Microsoft.JSInterop.WebAssembly (2)
WebAssemblyJSRuntime.cs (2)
47invocationInfo.ArgsJson, 78invocationInfo.ArgsJson,