1 interface inheriting from IRazorComponentsBuilder
Microsoft.AspNetCore.Components.Server (1)
DependencyInjection\IServerSideBlazorBuilder.cs (1)
9public interface IServerSideBlazorBuilder : IRazorComponentsBuilder
15 references to IRazorComponentsBuilder
Microsoft.AspNetCore.Components.Endpoints (3)
DependencyInjection\RazorComponentsServiceCollectionExtensions.cs (3)
34/// <returns>An <see cref="IRazorComponentsBuilder"/> that can be used to further configure the Razor component services.</returns> 36public static IRazorComponentsBuilder AddRazorComponents(this IServiceCollection services, Action<RazorComponentsServiceOptions>? configure = null) 91private sealed class DefaultRazorComponentsBuilder(IServiceCollection services) : IRazorComponentsBuilder
Microsoft.AspNetCore.Components.Server (4)
DependencyInjection\IServerSideBlazorBuilder.cs (1)
16IServiceCollection IRazorComponentsBuilder.Services => Services;
DependencyInjection\ServerRazorComponentsBuilderExtensions.cs (3)
29/// <param name="builder">The <see cref="IRazorComponentsBuilder"/>.</param> 31/// <returns>An <see cref="IRazorComponentsBuilder"/> that can be used to further customize the configuration.</returns> 33public static IServerSideBlazorBuilder AddInteractiveServerComponents(this IRazorComponentsBuilder builder, Action<CircuitOptions>? configure = null)
Microsoft.AspNetCore.Components.WebAssembly.Server (8)
WebAssemblyRazorComponentsBuilderExtensions.cs (8)
20/// <param name="builder">The <see cref="IRazorComponentsBuilder"/>.</param> 21/// <returns>An <see cref="IRazorComponentsBuilder"/> that can be used to further customize the configuration.</returns> 22public static IRazorComponentsBuilder AddInteractiveWebAssemblyComponents(this IRazorComponentsBuilder builder) 36/// <param name="builder">The <see cref="IRazorComponentsBuilder"/>.</param> 38/// <returns>An <see cref="IRazorComponentsBuilder"/> that can be used to further customize the configuration.</returns> 39public static IRazorComponentsBuilder AddAuthenticationStateSerialization(this IRazorComponentsBuilder builder, Action<AuthenticationStateSerializationOptions>? configure = null)