14 references to WindowObjectId
Microsoft.JSInterop (14)
JSInProcessRuntime.cs (5)
27=> Invoke<TValue>(identifier, WindowObjectId, JSCallType.FunctionCall, args); 32=> Invoke<IJSInProcessObjectReference>(identifier, WindowObjectId, JSCallType.NewCall, args); 37=> Invoke<TValue>(identifier, WindowObjectId, JSCallType.GetValue); 42=> Invoke<IJSVoidResult>(identifier, WindowObjectId, JSCallType.SetValue, value); 81=> InvokeJS(identifier, argsJson, JSCallResultType.Default, WindowObjectId);
JSRuntime.cs (9)
71=> InvokeAsync<TValue>(WindowObjectId, identifier, JSCallType.FunctionCall, args); 85=> InvokeAsync<TValue>(WindowObjectId, identifier, JSCallType.FunctionCall, cancellationToken, args); 89=> InvokeAsync<IJSObjectReference>(WindowObjectId, identifier, JSCallType.NewCall, args); 93=> InvokeAsync<IJSObjectReference>(WindowObjectId, identifier, JSCallType.NewCall, cancellationToken, args); 97=> InvokeAsync<TValue>(WindowObjectId, identifier, JSCallType.GetValue, null); 101=> InvokeAsync<TValue>(WindowObjectId, identifier, JSCallType.GetValue, cancellationToken, null); 105=> await InvokeAsync<IJSVoidResult>(WindowObjectId, identifier, JSCallType.SetValue, [value]); 109=> await InvokeAsync<IJSVoidResult>(WindowObjectId, identifier, JSCallType.SetValue, cancellationToken, [value]); 192=> BeginInvokeJS(taskId, identifier, argsJson, JSCallResultType.Default, WindowObjectId);