14 references to WindowObjectId
Microsoft.JSInterop (14)
JSInProcessRuntime.cs (5)
27=> Invoke<TValue>(identifier, WindowObjectId, JSCallType.FunctionCall, args); 32=> Invoke<IJSInProcessObjectReference>(identifier, WindowObjectId, JSCallType.ConstructorCall, 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)
82=> InvokeAsync<TValue>(WindowObjectId, identifier, JSCallType.FunctionCall, args); 96=> InvokeAsync<TValue>(WindowObjectId, identifier, JSCallType.FunctionCall, cancellationToken, args); 100=> InvokeAsync<IJSObjectReference>(WindowObjectId, identifier, JSCallType.ConstructorCall, args); 104=> InvokeAsync<IJSObjectReference>(WindowObjectId, identifier, JSCallType.ConstructorCall, cancellationToken, args); 108=> InvokeAsync<TValue>(WindowObjectId, identifier, JSCallType.GetValue, null); 112=> InvokeAsync<TValue>(WindowObjectId, identifier, JSCallType.GetValue, cancellationToken, null); 116=> await InvokeAsync<IJSVoidResult>(WindowObjectId, identifier, JSCallType.SetValue, [value]); 120=> await InvokeAsync<IJSVoidResult>(WindowObjectId, identifier, JSCallType.SetValue, cancellationToken, [value]); 203=> BeginInvokeJS(taskId, identifier, argsJson, JSCallResultType.Default, WindowObjectId);