1 type derived from JSComponentInterop
Microsoft.AspNetCore.Components.Server (1)
Circuits\CircuitJSComponentInterop.cs (1)
8internal sealed class CircuitJSComponentInterop : JSComponentInterop
2 instantiations of JSComponentInterop
Microsoft.AspNetCore.Components.WebAssembly (1)
Hosting\WebAssemblyHost.cs (1)
152var jsComponentInterop = new JSComponentInterop(_rootComponents.JSComponents);
Microsoft.AspNetCore.Components.WebView (1)
PageContext.cs (1)
48var jsComponents = new JSComponentInterop(jsComponentsConfiguration);
14 references to JSComponentInterop
Microsoft.AspNetCore.Components.Web (10)
JSComponents\JSComponentConfigurationExtensions.cs (2)
44[DynamicDependency(DynamicallyAccessedMemberTypes.PublicMethods, typeof(JSComponentInterop))] 55[DynamicDependency(DynamicallyAccessedMemberTypes.PublicMethods, typeof(JSComponentInterop))]
JSComponents\JSComponentConfigurationStore.cs (2)
30var parameterTypes = JSComponentInterop.GetComponentParameters(componentType).ParameterInfoByName; 97var x when JSComponentInterop.IsEventCallbackType(x) => "eventcallback",
JSComponents\JSComponentInterop.cs (1)
45/// Constructs an instance of <see cref="JSComponentInterop" />. This is only intended
WebRenderer.cs (5)
31/// <param name="jsComponentInterop">The <see cref="JSComponentInterop"/>.</param> 36JSComponentInterop jsComponentInterop) 104private void AttachWebRendererInterop(IJSRuntime jsRuntime, JsonSerializerOptions jsonOptions, JSComponentInterop jsComponentInterop) 150private readonly JSComponentInterop _jsComponentInterop; 153public WebRendererInteropMethods(WebRenderer renderer, JsonSerializerOptions jsonOptions, JSComponentInterop jsComponentInterop)
Microsoft.AspNetCore.Components.WebAssembly (2)
Hosting\WebAssemblyHost.cs (1)
152var jsComponentInterop = new JSComponentInterop(_rootComponents.JSComponents);
Rendering\WebAssemblyRenderer.cs (1)
30public WebAssemblyRenderer(IServiceProvider serviceProvider, ResourceAssetCollection resourceCollection, ILoggerFactory loggerFactory, JSComponentInterop jsComponentInterop)
Microsoft.AspNetCore.Components.WebView (2)
PageContext.cs (1)
48var jsComponents = new JSComponentInterop(jsComponentsConfiguration);
Services\WebViewRenderer.cs (1)
24JSComponentInterop jsComponentInterop) :