ServiceDescriptor.KeyedScoped Method

Definition

Overloads

KeyedScoped(Type, Object, Func<IServiceProvider,Object,Object>)

Creates an instance of ServiceDescriptor with the specified service, implementationFactory, and the Scoped lifetime.

KeyedScoped(Type, Object, Type)

Creates an instance of ServiceDescriptor with the specified service and implementationType and the Scoped lifetime.

KeyedScoped<TService,TImplementation>(Object)

Creates an instance of ServiceDescriptor with the specified TService, TImplementation, and the Scoped lifetime.

KeyedScoped<TService,TImplementation>(Object, Func<IServiceProvider,Object,TImplementation>)

Creates an instance of ServiceDescriptor with the specified TService, TImplementation, implementationFactory, and the Scoped lifetime.

KeyedScoped<TService>(Object, Func<IServiceProvider,Object,TService>)

Creates an instance of ServiceDescriptor with the specified TService, implementationFactory, and the Scoped lifetime.

KeyedScoped(Type, Object, Func<IServiceProvider,Object,Object>)

Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs

Creates an instance of ServiceDescriptor with the specified service, implementationFactory, and the Scoped lifetime.

public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor KeyedScoped (Type service, object? serviceKey, Func<IServiceProvider,object?,object> implementationFactory);

Parameters

service
Type

The type of the service.

serviceKey
Object

The ServiceKey of the service.

implementationFactory
Func<IServiceProvider,Object,Object>

A factory to create new instances of the service implementation.

Returns

A new instance of ServiceDescriptor.

Applies to

.NET 9 (package-provided) e altre versioni
Prodotto Versioni
.NET 8 (package-provided), 9 (package-provided)
.NET Framework 4.7 (package-provided), 4.7.1 (package-provided), 4.7.2 (package-provided), 4.8 (package-provided)
.NET Standard 2.0 (package-provided), 2.1 (package-provided)

KeyedScoped(Type, Object, Type)

Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs

Creates an instance of ServiceDescriptor with the specified service and implementationType and the Scoped lifetime.

public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor KeyedScoped (Type service, object? serviceKey, Type implementationType);

Parameters

service
Type

The type of the service.

serviceKey
Object

The ServiceKey of the service.

implementationType
Type

The type of the implementation.

Returns

A new instance of ServiceDescriptor.

Applies to

.NET 9 (package-provided) e altre versioni
Prodotto Versioni
.NET 8 (package-provided), 9 (package-provided)
.NET Framework 4.7 (package-provided), 4.7.1 (package-provided), 4.7.2 (package-provided), 4.8 (package-provided)
.NET Standard 2.0 (package-provided), 2.1 (package-provided)

KeyedScoped<TService,TImplementation>(Object)

Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs

Creates an instance of ServiceDescriptor with the specified TService, TImplementation, and the Scoped lifetime.

public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor KeyedScoped<TService,TImplementation> (object? serviceKey) where TService : class where TImplementation : class, TService;

Type Parameters

TService

The type of the service.

TImplementation

The type of the implementation.

Parameters

serviceKey
Object

The ServiceKey of the service.

Returns

A new instance of ServiceDescriptor.

Applies to

.NET 9 (package-provided) e altre versioni
Prodotto Versioni
.NET 8 (package-provided), 9 (package-provided)
.NET Framework 4.7 (package-provided), 4.7.1 (package-provided), 4.7.2 (package-provided), 4.8 (package-provided)
.NET Standard 2.0 (package-provided), 2.1 (package-provided)

KeyedScoped<TService,TImplementation>(Object, Func<IServiceProvider,Object,TImplementation>)

Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs

Creates an instance of ServiceDescriptor with the specified TService, TImplementation, implementationFactory, and the Scoped lifetime.

public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor KeyedScoped<TService,TImplementation> (object? serviceKey, Func<IServiceProvider,object?,TImplementation> implementationFactory) where TService : class where TImplementation : class, TService;

Type Parameters

TService

The type of the service.

TImplementation

The type of the implementation.

Parameters

serviceKey
Object

The ServiceKey of the service.

implementationFactory
Func<IServiceProvider,Object,TImplementation>

A factory to create new instances of the service implementation.

Returns

A new instance of ServiceDescriptor.

Applies to

.NET 9 (package-provided) e altre versioni
Prodotto Versioni
.NET 8 (package-provided), 9 (package-provided)
.NET Framework 4.7 (package-provided), 4.7.1 (package-provided), 4.7.2 (package-provided), 4.8 (package-provided)
.NET Standard 2.0 (package-provided), 2.1 (package-provided)

KeyedScoped<TService>(Object, Func<IServiceProvider,Object,TService>)

Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs

Creates an instance of ServiceDescriptor with the specified TService, implementationFactory, and the Scoped lifetime.

public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor KeyedScoped<TService> (object? serviceKey, Func<IServiceProvider,object?,TService> implementationFactory) where TService : class;

Type Parameters

TService

The type of the service.

Parameters

serviceKey
Object

The ServiceKey of the service.

implementationFactory
Func<IServiceProvider,Object,TService>

A factory to create new instances of the service implementation.

Returns

A new instance of ServiceDescriptor.

Applies to

.NET 9 (package-provided) e altre versioni
Prodotto Versioni
.NET 8 (package-provided), 9 (package-provided)
.NET Framework 4.7 (package-provided), 4.7.1 (package-provided), 4.7.2 (package-provided), 4.8 (package-provided)
.NET Standard 2.0 (package-provided), 2.1 (package-provided)