ServiceCollectionDescriptorExtensions.TryAddKeyedTransient 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
TryAddKeyedTransient(IServiceCollection, Type, Object, Type) |
Adds the specified |
TryAddKeyedTransient(IServiceCollection, Type, Object) |
Adds the specified |
TryAddKeyedTransient(IServiceCollection, Type, Object, Func<IServiceProvider,Object,Object>) |
Adds the specified |
TryAddKeyedTransient<TService,TImplementation>(IServiceCollection, Object) |
Adds the specified |
TryAddKeyedTransient<TService>(IServiceCollection, Object) |
Adds the specified |
TryAddKeyedTransient<TService>(IServiceCollection, Object, Func<IServiceProvider,Object,TService>) |
Adds the specified |
TryAddKeyedTransient(IServiceCollection, Type, Object, Type)
Adds the specified service
as a Transient service
with the implementationType
implementation
to the collection
if the service type hasn't already been registered.
public:
[System::Runtime::CompilerServices::Extension]
static void TryAddKeyedTransient(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ collection, Type ^ service, System::Object ^ serviceKey, Type ^ implementationType);
public static void TryAddKeyedTransient (this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, Type service, object? serviceKey, Type implementationType);
static member TryAddKeyedTransient : Microsoft.Extensions.DependencyInjection.IServiceCollection * Type * obj * Type -> unit
<Extension()>
Public Sub TryAddKeyedTransient (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
TryAddKeyedTransient(IServiceCollection, Type, Object)
Adds the specified service
as a Transient service
to the collection
if the service type hasn't already been registered.
public:
[System::Runtime::CompilerServices::Extension]
static void TryAddKeyedTransient(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ collection, Type ^ service, System::Object ^ serviceKey);
public static void TryAddKeyedTransient (this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, Type service, object? serviceKey);
static member TryAddKeyedTransient : Microsoft.Extensions.DependencyInjection.IServiceCollection * Type * obj -> unit
<Extension()>
Public Sub TryAddKeyedTransient (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
TryAddKeyedTransient(IServiceCollection, Type, Object, Func<IServiceProvider,Object,Object>)
Adds the specified service
as a Transient 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 TryAddKeyedTransient(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ collection, Type ^ service, System::Object ^ serviceKey, Func<IServiceProvider ^, System::Object ^, System::Object ^> ^ implementationFactory);
public static void TryAddKeyedTransient (this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, Type service, object? serviceKey, Func<IServiceProvider,object?,object> implementationFactory);
static member TryAddKeyedTransient : Microsoft.Extensions.DependencyInjection.IServiceCollection * Type * obj * Func<IServiceProvider, obj, obj> -> unit
<Extension()>
Public Sub TryAddKeyedTransient (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
TryAddKeyedTransient<TService,TImplementation>(IServiceCollection, Object)
Adds the specified TService
as a Transient 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 TryAddKeyedTransient(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ collection, System::Object ^ serviceKey);
public static void TryAddKeyedTransient<TService,TImplementation> (this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, object? serviceKey) where TService : class where TImplementation : class, TService;
static member TryAddKeyedTransient : Microsoft.Extensions.DependencyInjection.IServiceCollection * obj -> unit (requires 'Service : null)
<Extension()>
Public Sub TryAddKeyedTransient(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
TryAddKeyedTransient<TService>(IServiceCollection, Object)
Adds the specified TService
as a Transient 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 TryAddKeyedTransient(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ collection, System::Object ^ serviceKey);
public static void TryAddKeyedTransient<TService> (this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, object? serviceKey) where TService : class;
static member TryAddKeyedTransient : Microsoft.Extensions.DependencyInjection.IServiceCollection * obj -> unit (requires 'Service : null)
<Extension()>
Public Sub TryAddKeyedTransient(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
TryAddKeyedTransient<TService>(IServiceCollection, Object, Func<IServiceProvider,Object,TService>)
Adds the specified TService
as a Transient 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 TryAddKeyedTransient(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services, System::Object ^ serviceKey, Func<IServiceProvider ^, System::Object ^, TService> ^ implementationFactory);
public static void TryAddKeyedTransient<TService> (this Microsoft.Extensions.DependencyInjection.IServiceCollection services, object? serviceKey, Func<IServiceProvider,object?,TService> implementationFactory) where TService : class;
static member TryAddKeyedTransient : Microsoft.Extensions.DependencyInjection.IServiceCollection * obj * Func<IServiceProvider, obj, 'Service (requires 'Service : null)> -> unit (requires 'Service : null)
<Extension()>
Public Sub TryAddKeyedTransient(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.