AutoActivationExtensions.AddActivatedKeyedSingleton Methode

Definitie

Overloads

Name Description
AddActivatedKeyedSingleton(IServiceCollection, Type, Object)

Hiermee wordt een automatisch geactiveerde singleton-service toegevoegd.

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

Hiermee wordt een automatisch geactiveerde singleton-service toegevoegd.

AddActivatedKeyedSingleton(IServiceCollection, Type, Object, Type)

Hiermee wordt een automatisch geactiveerde singleton-service toegevoegd.

AddActivatedKeyedSingleton<TService,TImplementation>(IServiceCollection, Object)

Hiermee wordt een automatisch geactiveerde singleton-service toegevoegd.

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

Hiermee wordt een automatisch geactiveerde singleton-service toegevoegd.

AddActivatedKeyedSingleton<TService>(IServiceCollection, Object)

Hiermee wordt een automatisch geactiveerde singleton-service toegevoegd.

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

Hiermee wordt een automatisch geactiveerde singleton-service toegevoegd.

AddActivatedKeyedSingleton(IServiceCollection, Type, Object)

Bron:
AutoActivationExtensions.Keyed.cs
Bron:
AutoActivationExtensions.Keyed.cs

Hiermee wordt een automatisch geactiveerde singleton-service toegevoegd.

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

De serviceverzameling waaraan de service moet worden toegevoegd.

serviceType
Type

Het type service dat moet worden geregistreerd en de implementatie die moet worden gebruikt.

serviceKey
Object

Een object dat wordt gebruikt om de specifieke service uniek te identificeren.

Retouren

De waarde van services.

Van toepassing op

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

Bron:
AutoActivationExtensions.Keyed.cs
Bron:
AutoActivationExtensions.Keyed.cs

Hiermee wordt een automatisch geactiveerde singleton-service toegevoegd.

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

De serviceverzameling waaraan de service moet worden toegevoegd.

serviceType
Type

Het type service dat moet worden geregistreerd.

serviceKey
Object

Een object dat wordt gebruikt om de specifieke service uniek te identificeren.

implementationFactory
Func<IServiceProvider,Object,Object>

De fabriek waarmee de service wordt gemaakt.

Retouren

De waarde van services.

Van toepassing op

AddActivatedKeyedSingleton(IServiceCollection, Type, Object, Type)

Bron:
AutoActivationExtensions.Keyed.cs
Bron:
AutoActivationExtensions.Keyed.cs

Hiermee wordt een automatisch geactiveerde singleton-service toegevoegd.

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

De serviceverzameling waaraan de service moet worden toegevoegd.

serviceType
Type

Het type service dat moet worden geregistreerd.

serviceKey
Object

Een object dat wordt gebruikt om de specifieke service uniek te identificeren.

implementationType
Type

Het implementatietype van de service.

Retouren

De waarde van services.

Van toepassing op

AddActivatedKeyedSingleton<TService,TImplementation>(IServiceCollection, Object)

Bron:
AutoActivationExtensions.Keyed.cs
Bron:
AutoActivationExtensions.Keyed.cs

Hiermee wordt een automatisch geactiveerde singleton-service toegevoegd.

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

Het type service dat moet worden toegevoegd.

TImplementation

Het type implementatie dat moet worden gebruikt.

Parameters

services
IServiceCollection

De serviceverzameling waaraan de service moet worden toegevoegd.

serviceKey
Object

Een object dat wordt gebruikt om de specifieke service uniek te identificeren.

Retouren

De waarde van services.

Van toepassing op

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

Bron:
AutoActivationExtensions.Keyed.cs
Bron:
AutoActivationExtensions.Keyed.cs

Hiermee wordt een automatisch geactiveerde singleton-service toegevoegd.

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

Het type service dat moet worden toegevoegd.

TImplementation

Het type implementatie dat moet worden gebruikt.

Parameters

services
IServiceCollection

De serviceverzameling waaraan de service moet worden toegevoegd.

serviceKey
Object

Een object dat wordt gebruikt om de specifieke service uniek te identificeren.

implementationFactory
Func<IServiceProvider,Object,TImplementation>

De fabriek waarmee de service wordt gemaakt.

Retouren

De waarde van services.

Van toepassing op

AddActivatedKeyedSingleton<TService>(IServiceCollection, Object)

Bron:
AutoActivationExtensions.Keyed.cs
Bron:
AutoActivationExtensions.Keyed.cs

Hiermee wordt een automatisch geactiveerde singleton-service toegevoegd.

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

Het type service dat moet worden toegevoegd.

Parameters

services
IServiceCollection

De serviceverzameling waaraan de service moet worden toegevoegd.

serviceKey
Object

Een object dat wordt gebruikt om de specifieke service uniek te identificeren.

Retouren

De waarde van services.

Van toepassing op

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

Bron:
AutoActivationExtensions.Keyed.cs
Bron:
AutoActivationExtensions.Keyed.cs

Hiermee wordt een automatisch geactiveerde singleton-service toegevoegd.

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

Het type service dat moet worden toegevoegd.

Parameters

services
IServiceCollection

De serviceverzameling waaraan de service moet worden toegevoegd.

serviceKey
Object

Een object dat wordt gebruikt om de specifieke service uniek te identificeren.

implementationFactory
Func<IServiceProvider,Object,TService>

De fabriek waarmee de service wordt gemaakt.

Retouren

De waarde van services.

Van toepassing op