1 implementation of IJSInProcessObjectReference
Microsoft.JSInterop (1)
Implementation\JSInProcessObjectReference.cs (1)
14public partial class JSInProcessObjectReference : JSObjectReference, IJSInProcessObjectReference
12 references to IJSInProcessObjectReference
Microsoft.JSInterop (12)
IJSInProcessObjectReference.cs (2)
29/// <returns>An <see cref="IJSInProcessObjectReference"/> instance that represents the created JS object.</returns> 31IJSInProcessObjectReference InvokeConstructor(string identifier, object?[]? args)
IJSInProcessRuntime.cs (1)
31IJSInProcessObjectReference InvokeConstructor(string identifier, params object?[]? args)
Implementation\JSInProcessObjectReference.cs (3)
12/// Implements functionality for <see cref="IJSInProcessObjectReference"/>. 39public IJSInProcessObjectReference InvokeConstructor(string identifier, object?[]? args) 43return _jsRuntime.Invoke<IJSInProcessObjectReference>(identifier, Id, JSCallType.ConstructorCall, args);
JSInProcessObjectReferenceExtensions.cs (3)
10/// Extension methods for <see cref="IJSInProcessObjectReference"/>. 17/// <param name="jsObjectReference">The <see cref="IJSInProcessObjectReference"/>.</param> 21public static void InvokeVoid(this IJSInProcessObjectReference jsObjectReference, string identifier, params object?[]? args)
JSInProcessRuntime.cs (2)
31public IJSInProcessObjectReference InvokeConstructor(string identifier, params object?[]? args) 32=> Invoke<IJSInProcessObjectReference>(identifier, WindowObjectId, JSCallType.ConstructorCall, args);
src\aspnetcore\src\Shared\JSInterop\JSCallResultTypeHelper.cs (1)
19typeof(TResult) == typeof(IJSInProcessObjectReference))