3 implementations of Services
Microsoft.AspNetCore.Components.Server (3)
DependencyInjection\ComponentServiceCollectionExtensions.cs (1)
105
public IServiceCollection
Services
{ get; }
DependencyInjection\IServerSideBlazorBuilder.cs (1)
16
IServiceCollection IRazorComponentsBuilder.
Services
=> Services;
DependencyInjection\ServerRazorComponentsBuilderExtensions.cs (1)
50
public IServiceCollection
Services
{ get; }
7 references to Services
Microsoft.AspNetCore.Components.Endpoints.Tests (1)
RazorComponentEndpointInvokerTest.cs (1)
22
.
Services
.AddAntiforgery()
Microsoft.AspNetCore.Components.Server (3)
DependencyInjection\ServerRazorComponentsBuilderExtensions.cs (3)
37
builder.
Services
.AddServerSideBlazor(configure);
38
builder.
Services
.TryAddEnumerable(ServiceDescriptor.Singleton<RenderModeEndpointProvider, CircuitEndpointProvider>());
40
return new DefaultServerSideBlazorBuilder(builder.
Services
);
Microsoft.AspNetCore.Components.WebAssembly.Server (3)
WebAssemblyRazorComponentsBuilderExtensions.cs (3)
26
builder.
Services
.TryAddEnumerable(ServiceDescriptor.Singleton<RenderModeEndpointProvider, WebAssemblyEndpointProvider>());
41
builder.
Services
.TryAddEnumerable(ServiceDescriptor.Scoped<IHostEnvironmentAuthenticationStateProvider, AuthenticationStateSerializer>());
44
builder.
Services
.Configure(configure);