AutoActivationExtensions.AddActivatedKeyedSingleton 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
| AddActivatedKeyedSingleton(IServiceCollection, Type, Object) | 
						 Adds an auto-activated keyed singleton service.  | 
        	
| AddActivatedKeyedSingleton(IServiceCollection, Type, Object, Func<IServiceProvider,Object,Object>) | 
						 Adds an auto-activated keyed singleton service.  | 
        	
| AddActivatedKeyedSingleton(IServiceCollection, Type, Object, Type) | 
						 Adds an auto-activated keyed singleton service.  | 
        	
| AddActivatedKeyedSingleton<TService,TImplementation>(IServiceCollection, Object) | 
						 Adds an auto-activated keyed singleton service.  | 
        	
| AddActivatedKeyedSingleton<TService,TImplementation>(IServiceCollection, Object, Func<IServiceProvider,Object,TImplementation>) | 
						 Adds an auto-activated keyed singleton service.  | 
        	
| AddActivatedKeyedSingleton<TService>(IServiceCollection, Object) | 
						 Adds an auto-activated keyed singleton service.  | 
        	
| AddActivatedKeyedSingleton<TService>(IServiceCollection, Object, Func<IServiceProvider,Object,TService>) | 
						 Adds an auto-activated keyed singleton service.  | 
        	
AddActivatedKeyedSingleton(IServiceCollection, Type, Object)
Adds an auto-activated keyed singleton service.
public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::Extensions::DependencyInjection::IServiceCollection ^ AddActivatedKeyedSingleton(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services, Type ^ serviceType, System::Object ^ serviceKey);
	public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddActivatedKeyedSingleton(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, Type serviceType, object? serviceKey);
	static member AddActivatedKeyedSingleton : Microsoft.Extensions.DependencyInjection.IServiceCollection * Type * obj -> Microsoft.Extensions.DependencyInjection.IServiceCollection
	<Extension()>
Public Function AddActivatedKeyedSingleton (services As IServiceCollection, serviceType As Type, serviceKey As Object) As IServiceCollection
	Parameters
- services
 - IServiceCollection
 
The service collection to add the service to.
- serviceType
 - Type
 
The type of the service to register and the implementation to use.
- serviceKey
 - Object
 
An object used to uniquely identify the specific service.
Returns
The value of services.
Applies to
AddActivatedKeyedSingleton(IServiceCollection, Type, Object, Func<IServiceProvider,Object,Object>)
Adds an auto-activated keyed singleton service.
public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::Extensions::DependencyInjection::IServiceCollection ^ AddActivatedKeyedSingleton(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services, Type ^ serviceType, System::Object ^ serviceKey, Func<IServiceProvider ^, System::Object ^, System::Object ^> ^ implementationFactory);
	public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddActivatedKeyedSingleton(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, Type serviceType, object? serviceKey, Func<IServiceProvider,object?,object> implementationFactory);
	static member AddActivatedKeyedSingleton : Microsoft.Extensions.DependencyInjection.IServiceCollection * Type * obj * Func<IServiceProvider, obj, obj> -> Microsoft.Extensions.DependencyInjection.IServiceCollection
	<Extension()>
Public Function AddActivatedKeyedSingleton (services As IServiceCollection, serviceType As Type, serviceKey As Object, implementationFactory As Func(Of IServiceProvider, Object, Object)) As IServiceCollection
	Parameters
- services
 - IServiceCollection
 
The service collection to add the service to.
- serviceType
 - Type
 
The type of the service to register.
- serviceKey
 - Object
 
An object used to uniquely identify the specific service.
- implementationFactory
 - Func<IServiceProvider,Object,Object>
 
The factory that creates the service.
Returns
The value of services.
Applies to
AddActivatedKeyedSingleton(IServiceCollection, Type, Object, Type)
Adds an auto-activated keyed singleton service.
public:
[System::Runtime::CompilerServices::Extension]
 static Microsoft::Extensions::DependencyInjection::IServiceCollection ^ AddActivatedKeyedSingleton(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services, Type ^ serviceType, System::Object ^ serviceKey, Type ^ implementationType);
	public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddActivatedKeyedSingleton(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, Type serviceType, object? serviceKey, Type implementationType);
	static member AddActivatedKeyedSingleton : Microsoft.Extensions.DependencyInjection.IServiceCollection * Type * obj * Type -> Microsoft.Extensions.DependencyInjection.IServiceCollection
	<Extension()>
Public Function AddActivatedKeyedSingleton (services As IServiceCollection, serviceType As Type, serviceKey As Object, implementationType As Type) As IServiceCollection
	Parameters
- services
 - IServiceCollection
 
The service collection to add the service to.
- serviceType
 - Type
 
The type of the service to register.
- serviceKey
 - Object
 
An object used to uniquely identify the specific service.
- implementationType
 - Type
 
The implementation type of the service.
Returns
The value of services.
Applies to
AddActivatedKeyedSingleton<TService,TImplementation>(IServiceCollection, Object)
Adds an auto-activated keyed singleton service.
public:
generic <typename TService, typename TImplementation>
 where TService : class where TImplementation : class, TService[System::Runtime::CompilerServices::Extension]
 static Microsoft::Extensions::DependencyInjection::IServiceCollection ^ AddActivatedKeyedSingleton(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services, System::Object ^ serviceKey);
	public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddActivatedKeyedSingleton<TService,TImplementation>(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, object? serviceKey) where TService : class where TImplementation : class, TService;
	static member AddActivatedKeyedSingleton : Microsoft.Extensions.DependencyInjection.IServiceCollection * obj -> Microsoft.Extensions.DependencyInjection.IServiceCollection (requires 'Service : null)
	<Extension()>
Public Function AddActivatedKeyedSingleton(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 service collection to add the service to.
- serviceKey
 - Object
 
An object used to uniquely identify the specific service.
Returns
The value of services.
Applies to
AddActivatedKeyedSingleton<TService,TImplementation>(IServiceCollection, Object, Func<IServiceProvider,Object,TImplementation>)
Adds an auto-activated keyed singleton service.
public:
generic <typename TService, typename TImplementation>
 where TService : class where TImplementation : class, TService[System::Runtime::CompilerServices::Extension]
 static Microsoft::Extensions::DependencyInjection::IServiceCollection ^ AddActivatedKeyedSingleton(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services, System::Object ^ serviceKey, Func<IServiceProvider ^, System::Object ^, TImplementation> ^ implementationFactory);
	public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddActivatedKeyedSingleton<TService,TImplementation>(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, object? serviceKey, Func<IServiceProvider,object?,TImplementation> implementationFactory) where TService : class where TImplementation : class, TService;
	static member AddActivatedKeyedSingleton : Microsoft.Extensions.DependencyInjection.IServiceCollection * obj * Func<IServiceProvider, obj, #'Service> -> Microsoft.Extensions.DependencyInjection.IServiceCollection (requires 'Service : null)
	<Extension()>
Public Function AddActivatedKeyedSingleton(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 service collection to add the service to.
- serviceKey
 - Object
 
An object used to uniquely identify the specific service.
- implementationFactory
 - Func<IServiceProvider,Object,TImplementation>
 
The factory that creates the service.
Returns
The value of services.
Applies to
AddActivatedKeyedSingleton<TService>(IServiceCollection, Object)
Adds an auto-activated keyed singleton service.
public:
generic <typename TService>
 where TService : class[System::Runtime::CompilerServices::Extension]
 static Microsoft::Extensions::DependencyInjection::IServiceCollection ^ AddActivatedKeyedSingleton(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services, System::Object ^ serviceKey);
	public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddActivatedKeyedSingleton<TService>(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, object? serviceKey) where TService : class;
	static member AddActivatedKeyedSingleton : Microsoft.Extensions.DependencyInjection.IServiceCollection * obj -> Microsoft.Extensions.DependencyInjection.IServiceCollection (requires 'Service : null)
	<Extension()>
Public Function AddActivatedKeyedSingleton(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 service collection to add the service to.
- serviceKey
 - Object
 
An object used to uniquely identify the specific service.
Returns
The value of services.
Applies to
AddActivatedKeyedSingleton<TService>(IServiceCollection, Object, Func<IServiceProvider,Object,TService>)
Adds an auto-activated keyed singleton service.
public:
generic <typename TService>
 where TService : class[System::Runtime::CompilerServices::Extension]
 static Microsoft::Extensions::DependencyInjection::IServiceCollection ^ AddActivatedKeyedSingleton(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services, System::Object ^ serviceKey, Func<IServiceProvider ^, System::Object ^, TService> ^ implementationFactory);
	public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddActivatedKeyedSingleton<TService>(this Microsoft.Extensions.DependencyInjection.IServiceCollection services, object? serviceKey, Func<IServiceProvider,object?,TService> implementationFactory) where TService : class;
	static member AddActivatedKeyedSingleton : Microsoft.Extensions.DependencyInjection.IServiceCollection * obj * Func<IServiceProvider, obj, 'Service (requires 'Service : null)> -> Microsoft.Extensions.DependencyInjection.IServiceCollection (requires 'Service : null)
	<Extension()>
Public Function AddActivatedKeyedSingleton(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 service collection to add the service to.
- serviceKey
 - Object
 
An object used to uniquely identify the specific service.
- implementationFactory
 - Func<IServiceProvider,Object,TService>
 
The factory that creates the service.
Returns
The value of services.