ServiceCollectionServiceExtensions.AddKeyedScoped Method

Definition

Overloads

AddKeyedScoped(IServiceCollection, Type, Object)

Adds a scoped service of the type specified in serviceType to the specified IServiceCollection.

AddKeyedScoped(IServiceCollection, Type, Object, Func<IServiceProvider,Object,Object>)

Adds a scoped service of the type specified in serviceType with a factory specified in implementationFactory to the specified IServiceCollection.

AddKeyedScoped(IServiceCollection, Type, Object, Type)

Adds a scoped service of the type specified in serviceType with an implementation of the type specified in implementationType to the specified IServiceCollection.

AddKeyedScoped<TService,TImplementation>(IServiceCollection, Object)

Adds a scoped service of the type specified in TService with an implementation type specified in TImplementation to the specified IServiceCollection.

AddKeyedScoped<TService,TImplementation>(IServiceCollection, Object, Func<IServiceProvider,Object,TImplementation>)

Adds a scoped service of the type specified in TService with an implementation type specified in TImplementation using the factory specified in implementationFactory to the specified IServiceCollection.

AddKeyedScoped<TService>(IServiceCollection, Object)

Adds a scoped service of the type specified in TService to the specified IServiceCollection.

AddKeyedScoped<TService>(IServiceCollection, Object, Func<IServiceProvider,Object,TService>)

Adds a scoped service of the type specified in TService with a factory specified in implementationFactory to the specified IServiceCollection.

AddKeyedScoped(IServiceCollection, Type, Object)

Source:
ServiceCollectionServiceExtensions.Keyed.cs
Source:
ServiceCollectionServiceExtensions.Keyed.cs
Source:
ServiceCollectionServiceExtensions.Keyed.cs
Source:
ServiceCollectionServiceExtensions.Keyed.cs

Adds a scoped service of the type specified in serviceType to the specified IServiceCollection.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::Extensions::DependencyInjection::IServiceCollection ^ AddKeyedScoped(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services, Type ^ serviceType, System::Object ^ serviceKey);
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddKeyedScoped (this Microsoft.Extensions.DependencyInjection.IServiceCollection services, Type serviceType, object? serviceKey);
static member AddKeyedScoped : Microsoft.Extensions.DependencyInjection.IServiceCollection * Type * obj -> Microsoft.Extensions.DependencyInjection.IServiceCollection
<Extension()>
Public Function AddKeyedScoped (services As IServiceCollection, serviceType As Type, serviceKey As Object) As IServiceCollection

Parameters

services
IServiceCollection

The IServiceCollection to add the service to.

serviceType
Type

The type of the service to register and the implementation to use.

serviceKey
Object

The ServiceKey of the service.

Returns

A reference to this instance after the operation has completed.

Applies to

AddKeyedScoped(IServiceCollection, Type, Object, Func<IServiceProvider,Object,Object>)

Source:
ServiceCollectionServiceExtensions.Keyed.cs
Source:
ServiceCollectionServiceExtensions.Keyed.cs
Source:
ServiceCollectionServiceExtensions.Keyed.cs
Source:
ServiceCollectionServiceExtensions.Keyed.cs

Adds a scoped service of the type specified in serviceType with a factory specified in implementationFactory to the specified IServiceCollection.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::Extensions::DependencyInjection::IServiceCollection ^ AddKeyedScoped(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services, Type ^ serviceType, System::Object ^ serviceKey, Func<IServiceProvider ^, System::Object ^, System::Object ^> ^ implementationFactory);
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddKeyedScoped (this Microsoft.Extensions.DependencyInjection.IServiceCollection services, Type serviceType, object? serviceKey, Func<IServiceProvider,object?,object> implementationFactory);
static member AddKeyedScoped : Microsoft.Extensions.DependencyInjection.IServiceCollection * Type * obj * Func<IServiceProvider, obj, obj> -> Microsoft.Extensions.DependencyInjection.IServiceCollection
<Extension()>
Public Function AddKeyedScoped (services As IServiceCollection, serviceType As Type, serviceKey As Object, implementationFactory As Func(Of IServiceProvider, Object, Object)) As IServiceCollection

Parameters

services
IServiceCollection

The IServiceCollection to add the service to.

serviceType
Type

The type of the service to register.

serviceKey
Object

The ServiceKey of the service.

implementationFactory
Func<IServiceProvider,Object,Object>

The factory that creates the service.

Returns

A reference to this instance after the operation has completed.

Applies to

AddKeyedScoped(IServiceCollection, Type, Object, Type)

Source:
ServiceCollectionServiceExtensions.Keyed.cs
Source:
ServiceCollectionServiceExtensions.Keyed.cs
Source:
ServiceCollectionServiceExtensions.Keyed.cs
Source:
ServiceCollectionServiceExtensions.Keyed.cs

Adds a scoped service of the type specified in serviceType with an implementation of the type specified in implementationType to the specified IServiceCollection.

public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::Extensions::DependencyInjection::IServiceCollection ^ AddKeyedScoped(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services, Type ^ serviceType, System::Object ^ serviceKey, Type ^ implementationType);
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddKeyedScoped (this Microsoft.Extensions.DependencyInjection.IServiceCollection services, Type serviceType, object? serviceKey, Type implementationType);
static member AddKeyedScoped : Microsoft.Extensions.DependencyInjection.IServiceCollection * Type * obj * Type -> Microsoft.Extensions.DependencyInjection.IServiceCollection
<Extension()>
Public Function AddKeyedScoped (services As IServiceCollection, serviceType As Type, serviceKey As Object, implementationType As Type) As IServiceCollection

Parameters

services
IServiceCollection

The IServiceCollection to add the service to.

serviceType
Type

The type of the service to register.

serviceKey
Object

The ServiceKey of the service.

implementationType
Type

The implementation type of the service.

Returns

A reference to this instance after the operation has completed.

Applies to

AddKeyedScoped<TService,TImplementation>(IServiceCollection, Object)

Source:
ServiceCollectionServiceExtensions.Keyed.cs
Source:
ServiceCollectionServiceExtensions.Keyed.cs
Source:
ServiceCollectionServiceExtensions.Keyed.cs
Source:
ServiceCollectionServiceExtensions.Keyed.cs

Adds a scoped service of the type specified in TService with an implementation type specified in TImplementation to the specified IServiceCollection.

public:
generic <typename TService, typename TImplementation>
 where TService : class where TImplementation : class, TService[System::Runtime::CompilerServices::Extension]
 static Microsoft::Extensions::DependencyInjection::IServiceCollection ^ AddKeyedScoped(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services, System::Object ^ serviceKey);
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddKeyedScoped<TService,TImplementation> (this Microsoft.Extensions.DependencyInjection.IServiceCollection services, object? serviceKey) where TService : class where TImplementation : class, TService;
static member AddKeyedScoped : Microsoft.Extensions.DependencyInjection.IServiceCollection * obj -> Microsoft.Extensions.DependencyInjection.IServiceCollection (requires 'Service : null)
<Extension()>
Public Function AddKeyedScoped(Of TService As Class, TImplementation As Class) (services As IServiceCollection, serviceKey As Object) As IServiceCollection

Type Parameters

TService

The type of the service to add.

TImplementation

The type of the implementation to use.

Parameters

services
IServiceCollection

The IServiceCollection to add the service to.

serviceKey
Object

The ServiceKey of the service.

Returns

A reference to this instance after the operation has completed.

Applies to

AddKeyedScoped<TService,TImplementation>(IServiceCollection, Object, Func<IServiceProvider,Object,TImplementation>)

Source:
ServiceCollectionServiceExtensions.Keyed.cs
Source:
ServiceCollectionServiceExtensions.Keyed.cs
Source:
ServiceCollectionServiceExtensions.Keyed.cs
Source:
ServiceCollectionServiceExtensions.Keyed.cs

Adds a scoped service of the type specified in TService with an implementation type specified in TImplementation using the factory specified in implementationFactory to the specified IServiceCollection.

public:
generic <typename TService, typename TImplementation>
 where TService : class where TImplementation : class, TService[System::Runtime::CompilerServices::Extension]
 static Microsoft::Extensions::DependencyInjection::IServiceCollection ^ AddKeyedScoped(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services, System::Object ^ serviceKey, Func<IServiceProvider ^, System::Object ^, TImplementation> ^ implementationFactory);
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddKeyedScoped<TService,TImplementation> (this Microsoft.Extensions.DependencyInjection.IServiceCollection services, object? serviceKey, Func<IServiceProvider,object?,TImplementation> implementationFactory) where TService : class where TImplementation : class, TService;
static member AddKeyedScoped : Microsoft.Extensions.DependencyInjection.IServiceCollection * obj * Func<IServiceProvider, obj, #'Service> -> Microsoft.Extensions.DependencyInjection.IServiceCollection (requires 'Service : null)
<Extension()>
Public Function AddKeyedScoped(Of TService As Class, TImplementation As Class) (services As IServiceCollection, serviceKey As Object, implementationFactory As Func(Of IServiceProvider, Object, TImplementation)) As IServiceCollection

Type Parameters

TService

The type of the service to add.

TImplementation

The type of the implementation to use.

Parameters

services
IServiceCollection

The IServiceCollection to add the service to.

serviceKey
Object

The ServiceKey of the service.

implementationFactory
Func<IServiceProvider,Object,TImplementation>

The factory that creates the service.

Returns

A reference to this instance after the operation has completed.

Applies to

AddKeyedScoped<TService>(IServiceCollection, Object)

Source:
ServiceCollectionServiceExtensions.Keyed.cs
Source:
ServiceCollectionServiceExtensions.Keyed.cs
Source:
ServiceCollectionServiceExtensions.Keyed.cs
Source:
ServiceCollectionServiceExtensions.Keyed.cs

Adds a scoped service of the type specified in TService to the specified IServiceCollection.

public:
generic <typename TService>
 where TService : class[System::Runtime::CompilerServices::Extension]
 static Microsoft::Extensions::DependencyInjection::IServiceCollection ^ AddKeyedScoped(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services, System::Object ^ serviceKey);
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddKeyedScoped<TService> (this Microsoft.Extensions.DependencyInjection.IServiceCollection services, object? serviceKey) where TService : class;
static member AddKeyedScoped : Microsoft.Extensions.DependencyInjection.IServiceCollection * obj -> Microsoft.Extensions.DependencyInjection.IServiceCollection (requires 'Service : null)
<Extension()>
Public Function AddKeyedScoped(Of TService As Class) (services As IServiceCollection, serviceKey As Object) As IServiceCollection

Type Parameters

TService

The type of the service to add.

Parameters

services
IServiceCollection

The IServiceCollection to add the service to.

serviceKey
Object

The ServiceKey of the service.

Returns

A reference to this instance after the operation has completed.

Applies to

AddKeyedScoped<TService>(IServiceCollection, Object, Func<IServiceProvider,Object,TService>)

Source:
ServiceCollectionServiceExtensions.Keyed.cs
Source:
ServiceCollectionServiceExtensions.Keyed.cs
Source:
ServiceCollectionServiceExtensions.Keyed.cs
Source:
ServiceCollectionServiceExtensions.Keyed.cs

Adds a scoped service of the type specified in TService with a factory specified in implementationFactory to the specified IServiceCollection.

public:
generic <typename TService>
 where TService : class[System::Runtime::CompilerServices::Extension]
 static Microsoft::Extensions::DependencyInjection::IServiceCollection ^ AddKeyedScoped(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services, System::Object ^ serviceKey, Func<IServiceProvider ^, System::Object ^, TService> ^ implementationFactory);
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddKeyedScoped<TService> (this Microsoft.Extensions.DependencyInjection.IServiceCollection services, object? serviceKey, Func<IServiceProvider,object?,TService> implementationFactory) where TService : class;
static member AddKeyedScoped : Microsoft.Extensions.DependencyInjection.IServiceCollection * obj * Func<IServiceProvider, obj, 'Service (requires 'Service : null)> -> Microsoft.Extensions.DependencyInjection.IServiceCollection (requires 'Service : null)
<Extension()>
Public Function AddKeyedScoped(Of TService As Class) (services As IServiceCollection, serviceKey As Object, implementationFactory As Func(Of IServiceProvider, Object, TService)) As IServiceCollection

Type Parameters

TService

The type of the service to add.

Parameters

services
IServiceCollection

The IServiceCollection to add the service to.

serviceKey
Object

The ServiceKey of the service.

implementationFactory
Func<IServiceProvider,Object,TService>

The factory that creates the service.

Returns

A reference to this instance after the operation has completed.

Applies to