ServiceCollectionDescriptorExtensions.TryAddKeyedScoped Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
TryAddKeyedScoped(IServiceCollection, Type, Object, Type) |
Adds the specified |
TryAddKeyedScoped(IServiceCollection, Type, Object, Func<IServiceProvider,Object,Object>) |
Adds the specified |
TryAddKeyedScoped(IServiceCollection, Type, Object) |
Adds the specified |
TryAddKeyedScoped<TService,TImplementation>(IServiceCollection, Object) |
Adds the specified |
TryAddKeyedScoped<TService>(IServiceCollection, Object) |
Adds the specified |
TryAddKeyedScoped<TService>(IServiceCollection, Object, Func<IServiceProvider,Object,TService>) |
Adds the specified |
TryAddKeyedScoped(IServiceCollection, Type, Object, Type)
Adds the specified service
as a Scoped service
with the implementationType
implementation
to the collection
if the service type hasn't already been registered.
public:
[System::Runtime::CompilerServices::Extension]
static void TryAddKeyedScoped(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ collection, Type ^ service, System::Object ^ serviceKey, Type ^ implementationType);
public static void TryAddKeyedScoped (this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, Type service, object? serviceKey, Type implementationType);
static member TryAddKeyedScoped : Microsoft.Extensions.DependencyInjection.IServiceCollection * Type * obj * Type -> unit
<Extension()>
Public Sub TryAddKeyedScoped (collection As IServiceCollection, service As Type, serviceKey As Object, implementationType As Type)
Parameters
- collection
- IServiceCollection
The IServiceCollection.
- service
- Type
The type of the service to register.
- serviceKey
- Object
The service key.
- implementationType
- Type
The implementation type of the service.
Applies to
TryAddKeyedScoped(IServiceCollection, Type, Object, Func<IServiceProvider,Object,Object>)
Adds the specified service
as a Scoped service
using the factory specified in implementationFactory
to the collection
if the service type hasn't already been registered.
public:
[System::Runtime::CompilerServices::Extension]
static void TryAddKeyedScoped(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ collection, Type ^ service, System::Object ^ serviceKey, Func<IServiceProvider ^, System::Object ^, System::Object ^> ^ implementationFactory);
public static void TryAddKeyedScoped (this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, Type service, object? serviceKey, Func<IServiceProvider,object?,object> implementationFactory);
static member TryAddKeyedScoped : Microsoft.Extensions.DependencyInjection.IServiceCollection * Type * obj * Func<IServiceProvider, obj, obj> -> unit
<Extension()>
Public Sub TryAddKeyedScoped (collection As IServiceCollection, service As Type, serviceKey As Object, implementationFactory As Func(Of IServiceProvider, Object, Object))
Parameters
- collection
- IServiceCollection
The IServiceCollection.
- service
- Type
The type of the service to register.
- serviceKey
- Object
The service key.
- implementationFactory
- Func<IServiceProvider,Object,Object>
The factory that creates the service.
Applies to
TryAddKeyedScoped(IServiceCollection, Type, Object)
Adds the specified service
as a Scoped service
to the collection
if the service type hasn't already been registered.
public:
[System::Runtime::CompilerServices::Extension]
static void TryAddKeyedScoped(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ collection, Type ^ service, System::Object ^ serviceKey);
public static void TryAddKeyedScoped (this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, Type service, object? serviceKey);
static member TryAddKeyedScoped : Microsoft.Extensions.DependencyInjection.IServiceCollection * Type * obj -> unit
<Extension()>
Public Sub TryAddKeyedScoped (collection As IServiceCollection, service As Type, serviceKey As Object)
Parameters
- collection
- IServiceCollection
The IServiceCollection.
- service
- Type
The type of the service to register.
- serviceKey
- Object
The service key.
Applies to
TryAddKeyedScoped<TService,TImplementation>(IServiceCollection, Object)
Adds the specified TService
as a Scoped service
implementation type specified in TImplementation
to the collection
if the service type hasn't already been registered.
public:
generic <typename TService, typename TImplementation>
where TService : class where TImplementation : class, TService[System::Runtime::CompilerServices::Extension]
static void TryAddKeyedScoped(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ collection, System::Object ^ serviceKey);
public static void TryAddKeyedScoped<TService,TImplementation> (this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, object? serviceKey) where TService : class where TImplementation : class, TService;
static member TryAddKeyedScoped : Microsoft.Extensions.DependencyInjection.IServiceCollection * obj -> unit (requires 'Service : null)
<Extension()>
Public Sub TryAddKeyedScoped(Of TService As Class, TImplementation As Class) (collection As IServiceCollection, serviceKey As Object)
Type Parameters
- TService
The type of the service to add.
- TImplementation
The type of the implementation to use.
Parameters
- collection
- IServiceCollection
The IServiceCollection.
- serviceKey
- Object
The service key.
Applies to
TryAddKeyedScoped<TService>(IServiceCollection, Object)
Adds the specified TService
as a Scoped service
to the collection
if the service type hasn't already been registered.
public:
generic <typename TService>
where TService : class[System::Runtime::CompilerServices::Extension]
static void TryAddKeyedScoped(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ collection, System::Object ^ serviceKey);
public static void TryAddKeyedScoped<TService> (this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, object? serviceKey) where TService : class;
static member TryAddKeyedScoped : Microsoft.Extensions.DependencyInjection.IServiceCollection * obj -> unit (requires 'Service : null)
<Extension()>
Public Sub TryAddKeyedScoped(Of TService As Class) (collection As IServiceCollection, serviceKey As Object)
Type Parameters
- TService
The type of the service to add.
Parameters
- collection
- IServiceCollection
The IServiceCollection.
- serviceKey
- Object
The service key.
Applies to
TryAddKeyedScoped<TService>(IServiceCollection, Object, Func<IServiceProvider,Object,TService>)
Adds the specified TService
as a Scoped service
using the factory specified in implementationFactory
to the services
if the service type hasn't already been registered.
public:
generic <typename TService>
where TService : class[System::Runtime::CompilerServices::Extension]
static void TryAddKeyedScoped(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services, System::Object ^ serviceKey, Func<IServiceProvider ^, System::Object ^, TService> ^ implementationFactory);
public static void TryAddKeyedScoped<TService> (this Microsoft.Extensions.DependencyInjection.IServiceCollection services, object? serviceKey, Func<IServiceProvider,object?,TService> implementationFactory) where TService : class;
static member TryAddKeyedScoped : Microsoft.Extensions.DependencyInjection.IServiceCollection * obj * Func<IServiceProvider, obj, 'Service (requires 'Service : null)> -> unit (requires 'Service : null)
<Extension()>
Public Sub TryAddKeyedScoped(Of TService As Class) (services As IServiceCollection, serviceKey As Object, implementationFactory As Func(Of IServiceProvider, Object, TService))
Type Parameters
- TService
The type of the service to add.
Parameters
- services
- IServiceCollection
The IServiceCollection.
- serviceKey
- Object
The service key.
- implementationFactory
- Func<IServiceProvider,Object,TService>
The factory that creates the service.