ServiceDescriptor.KeyedTransient Methode

Definitie

Overloads

Name Description
KeyedTransient(Type, Object, Func<IServiceProvider,Object,Object>)

Hiermee maakt u een exemplaar van ServiceDescriptor met de opgegeven service, implementationFactoryen de Transient levensduur.

KeyedTransient(Type, Object, Type)

Hiermee maakt u een exemplaar van ServiceDescriptor met de opgegeven service en implementationType de Transient levensduur.

KeyedTransient<TService,TImplementation>(Object)

Hiermee maakt u een exemplaar van ServiceDescriptor met de opgegeven TService, TImplementationen de Transient levensduur.

KeyedTransient<TService,TImplementation>(Object, Func<IServiceProvider,Object,TImplementation>)

Hiermee maakt u een exemplaar van ServiceDescriptor met de opgegeven TService, TImplementationen implementationFactoryde Transient levensduur.

KeyedTransient<TService>(Object, Func<IServiceProvider,Object,TService>)

Hiermee maakt u een exemplaar van ServiceDescriptor met de opgegeven TService, implementationFactoryen de Transient levensduur.

KeyedTransient(Type, Object, Func<IServiceProvider,Object,Object>)

Bron:
ServiceDescriptor.cs
Bron:
ServiceDescriptor.cs
Bron:
ServiceDescriptor.cs
Bron:
ServiceDescriptor.cs

Hiermee maakt u een exemplaar van ServiceDescriptor met de opgegeven service, implementationFactoryen de Transient levensduur.

public:
 static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ KeyedTransient(Type ^ service, System::Object ^ serviceKey, Func<IServiceProvider ^, System::Object ^, System::Object ^> ^ implementationFactory);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor KeyedTransient(Type service, object? serviceKey, Func<IServiceProvider,object?,object> implementationFactory);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor KeyedTransient(Type service, object? serviceKey, Func<IServiceProvider,object,object> implementationFactory);
static member KeyedTransient : Type * obj * Func<IServiceProvider, obj, obj> -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor
Public Shared Function KeyedTransient (service As Type, serviceKey As Object, implementationFactory As Func(Of IServiceProvider, Object, Object)) As ServiceDescriptor

Parameters

service
Type

Het type service.

serviceKey
Object

De ServiceKey service.

implementationFactory
Func<IServiceProvider,Object,Object>

Een fabriek voor het maken van nieuwe exemplaren van de service-implementatie.

Retouren

Een nieuw exemplaar van ServiceDescriptor.

Van toepassing op

KeyedTransient(Type, Object, Type)

Bron:
ServiceDescriptor.cs
Bron:
ServiceDescriptor.cs
Bron:
ServiceDescriptor.cs
Bron:
ServiceDescriptor.cs

Hiermee maakt u een exemplaar van ServiceDescriptor met de opgegeven service en implementationType de Transient levensduur.

public:
 static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ KeyedTransient(Type ^ service, System::Object ^ serviceKey, Type ^ implementationType);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor KeyedTransient(Type service, object? serviceKey, Type implementationType);
static member KeyedTransient : Type * obj * Type -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor
Public Shared Function KeyedTransient (service As Type, serviceKey As Object, implementationType As Type) As ServiceDescriptor

Parameters

service
Type

Het type service.

serviceKey
Object

De ServiceKey service.

implementationType
Type

Het type implementatie.

Retouren

Een nieuw exemplaar van ServiceDescriptor.

Van toepassing op

KeyedTransient<TService,TImplementation>(Object)

Bron:
ServiceDescriptor.cs
Bron:
ServiceDescriptor.cs
Bron:
ServiceDescriptor.cs
Bron:
ServiceDescriptor.cs

Hiermee maakt u een exemplaar van ServiceDescriptor met de opgegeven TService, TImplementationen de Transient levensduur.

public:
generic <typename TService, typename TImplementation>
 where TService : class where TImplementation : class, TService static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ KeyedTransient(System::Object ^ serviceKey);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor KeyedTransient<TService,TImplementation>(object? serviceKey) where TService : class where TImplementation : class, TService;
static member KeyedTransient : obj -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor (requires 'Service : null)
Public Shared Function KeyedTransient(Of TService As Class, TImplementation As Class) (serviceKey As Object) As ServiceDescriptor

Type parameters

TService

Het type service.

TImplementation

Het type implementatie.

Parameters

serviceKey
Object

De ServiceKey service.

Retouren

Een nieuw exemplaar van ServiceDescriptor.

Van toepassing op

KeyedTransient<TService,TImplementation>(Object, Func<IServiceProvider,Object,TImplementation>)

Bron:
ServiceDescriptor.cs
Bron:
ServiceDescriptor.cs
Bron:
ServiceDescriptor.cs
Bron:
ServiceDescriptor.cs

Hiermee maakt u een exemplaar van ServiceDescriptor met de opgegeven TService, TImplementationen implementationFactoryde Transient levensduur.

public:
generic <typename TService, typename TImplementation>
 where TService : class where TImplementation : class, TService static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ KeyedTransient(System::Object ^ serviceKey, Func<IServiceProvider ^, System::Object ^, TImplementation> ^ implementationFactory);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor KeyedTransient<TService,TImplementation>(object? serviceKey, Func<IServiceProvider,object?,TImplementation> implementationFactory) where TService : class where TImplementation : class, TService;
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor KeyedTransient<TService,TImplementation>(object? serviceKey, Func<IServiceProvider,object,TImplementation> implementationFactory) where TService : class where TImplementation : class, TService;
static member KeyedTransient : obj * Func<IServiceProvider, obj, #'Service> -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor (requires 'Service : null)
Public Shared Function KeyedTransient(Of TService As Class, TImplementation As Class) (serviceKey As Object, implementationFactory As Func(Of IServiceProvider, Object, TImplementation)) As ServiceDescriptor

Type parameters

TService

Het type service.

TImplementation

Het type implementatie.

Parameters

serviceKey
Object

De ServiceKey service.

implementationFactory
Func<IServiceProvider,Object,TImplementation>

Een fabriek voor het maken van nieuwe exemplaren van de service-implementatie.

Retouren

Een nieuw exemplaar van ServiceDescriptor.

Van toepassing op

KeyedTransient<TService>(Object, Func<IServiceProvider,Object,TService>)

Bron:
ServiceDescriptor.cs
Bron:
ServiceDescriptor.cs
Bron:
ServiceDescriptor.cs
Bron:
ServiceDescriptor.cs

Hiermee maakt u een exemplaar van ServiceDescriptor met de opgegeven TService, implementationFactoryen de Transient levensduur.

public:
generic <typename TService>
 where TService : class static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ KeyedTransient(System::Object ^ serviceKey, Func<IServiceProvider ^, System::Object ^, TService> ^ implementationFactory);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor KeyedTransient<TService>(object? serviceKey, Func<IServiceProvider,object?,TService> implementationFactory) where TService : class;
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor KeyedTransient<TService>(object? serviceKey, Func<IServiceProvider,object,TService> implementationFactory) where TService : class;
static member KeyedTransient : obj * Func<IServiceProvider, obj, 'Service (requires 'Service : null)> -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor (requires 'Service : null)
Public Shared Function KeyedTransient(Of TService As Class) (serviceKey As Object, implementationFactory As Func(Of IServiceProvider, Object, TService)) As ServiceDescriptor

Type parameters

TService

Het type service.

Parameters

serviceKey
Object

De ServiceKey service.

implementationFactory
Func<IServiceProvider,Object,TService>

Een fabriek voor het maken van nieuwe exemplaren van de service-implementatie.

Retouren

Een nieuw exemplaar van ServiceDescriptor.

Van toepassing op