ServiceDescriptor.KeyedSingleton Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
KeyedSingleton(Type, Object, Func<IServiceProvider,Object,Object>) |
Crée une instance de ServiceDescriptor avec le |
KeyedSingleton(Type, Object, Object) |
Crée une instance de ServiceDescriptor avec le |
KeyedSingleton(Type, Object, Type) |
Crée une instance de ServiceDescriptor avec le |
KeyedSingleton<TService,TImplementation>(Object, Func<IServiceProvider,Object,TImplementation>) |
Crée une instance de ServiceDescriptor avec le |
KeyedSingleton<TService,TImplementation>(Object) |
Crée une instance de ServiceDescriptor avec le |
KeyedSingleton<TService>(Object, Func<IServiceProvider,Object,TService>) |
Crée une instance de ServiceDescriptor avec le |
KeyedSingleton<TService>(Object, TService) |
Crée une instance de ServiceDescriptor avec le |
KeyedSingleton(Type, Object, Func<IServiceProvider,Object,Object>)
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
Crée une instance de ServiceDescriptor avec le serviceType
, le implementationFactory
et la durée de vie Singleton spécifiés.
public:
static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ KeyedSingleton(Type ^ serviceType, System::Object ^ serviceKey, Func<IServiceProvider ^, System::Object ^, System::Object ^> ^ implementationFactory);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor KeyedSingleton (Type serviceType, object? serviceKey, Func<IServiceProvider,object?,object> implementationFactory);
static member KeyedSingleton : Type * obj * Func<IServiceProvider, obj, obj> -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor
Public Shared Function KeyedSingleton (serviceType As Type, serviceKey As Object, implementationFactory As Func(Of IServiceProvider, Object, Object)) As ServiceDescriptor
Paramètres
- serviceType
- Type
Type du service.
- serviceKey
- Object
ServiceKey du service.
- implementationFactory
- Func<IServiceProvider,Object,Object>
Fabrique pour créer des instances de l’implémentation du service.
Retours
Nouvelle instance de ServiceDescriptor.
S’applique à
KeyedSingleton(Type, Object, Object)
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
Crée une instance de ServiceDescriptor avec le serviceType
, le implementationInstance
et la durée de vie Singleton spécifiés.
public:
static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ KeyedSingleton(Type ^ serviceType, System::Object ^ serviceKey, System::Object ^ implementationInstance);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor KeyedSingleton (Type serviceType, object? serviceKey, object implementationInstance);
static member KeyedSingleton : Type * obj * obj -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor
Public Shared Function KeyedSingleton (serviceType As Type, serviceKey As Object, implementationInstance As Object) As ServiceDescriptor
Paramètres
- serviceType
- Type
Type du service.
- serviceKey
- Object
ServiceKey du service.
- implementationInstance
- Object
Instance de l’implémentation.
Retours
Nouvelle instance de ServiceDescriptor.
S’applique à
KeyedSingleton(Type, Object, Type)
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
Crée une instance de ServiceDescriptor avec le service
, le implementationType
et la durée de vie Singleton spécifiés.
public:
static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ KeyedSingleton(Type ^ service, System::Object ^ serviceKey, Type ^ implementationType);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor KeyedSingleton (Type service, object? serviceKey, Type implementationType);
static member KeyedSingleton : Type * obj * Type -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor
Public Shared Function KeyedSingleton (service As Type, serviceKey As Object, implementationType As Type) As ServiceDescriptor
Paramètres
- service
- Type
Type du service.
- serviceKey
- Object
ServiceKey du service.
- implementationType
- Type
Type de l’implémentation.
Retours
Nouvelle instance de ServiceDescriptor.
S’applique à
KeyedSingleton<TService,TImplementation>(Object, Func<IServiceProvider,Object,TImplementation>)
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
Crée une instance de ServiceDescriptor avec le TService
, le TImplementation
, le implementationFactory
et la durée de vie Singleton spécifiés.
public:
generic <typename TService, typename TImplementation>
where TService : class where TImplementation : class, TService static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ KeyedSingleton(System::Object ^ serviceKey, Func<IServiceProvider ^, System::Object ^, TImplementation> ^ implementationFactory);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor KeyedSingleton<TService,TImplementation> (object? serviceKey, Func<IServiceProvider,object?,TImplementation> implementationFactory) where TService : class where TImplementation : class, TService;
static member KeyedSingleton : obj * Func<IServiceProvider, obj, #'Service> -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor (requires 'Service : null)
Public Shared Function KeyedSingleton(Of TService As Class, TImplementation As Class) (serviceKey As Object, implementationFactory As Func(Of IServiceProvider, Object, TImplementation)) As ServiceDescriptor
Paramètres de type
- TService
Type du service.
- TImplementation
Type de l’implémentation.
Paramètres
- serviceKey
- Object
ServiceKey du service.
- implementationFactory
- Func<IServiceProvider,Object,TImplementation>
Fabrique pour créer des instances de l’implémentation du service.
Retours
Nouvelle instance de ServiceDescriptor.
S’applique à
KeyedSingleton<TService,TImplementation>(Object)
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
Crée une instance de ServiceDescriptor avec le TService
, le TImplementation
et la durée de vie Singleton spécifiés.
public:
generic <typename TService, typename TImplementation>
where TService : class where TImplementation : class, TService static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ KeyedSingleton(System::Object ^ serviceKey);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor KeyedSingleton<TService,TImplementation> (object? serviceKey) where TService : class where TImplementation : class, TService;
static member KeyedSingleton : obj -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor (requires 'Service : null)
Public Shared Function KeyedSingleton(Of TService As Class, TImplementation As Class) (serviceKey As Object) As ServiceDescriptor
Paramètres de type
- TService
Type du service.
- TImplementation
Type de l’implémentation.
Paramètres
- serviceKey
- Object
ServiceKey du service.
Retours
Nouvelle instance de ServiceDescriptor.
S’applique à
KeyedSingleton<TService>(Object, Func<IServiceProvider,Object,TService>)
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
Crée une instance de ServiceDescriptor avec le TService
, le implementationFactory
et la durée de vie Singleton spécifiés.
public:
generic <typename TService>
where TService : class static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ KeyedSingleton(System::Object ^ serviceKey, Func<IServiceProvider ^, System::Object ^, TService> ^ implementationFactory);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor KeyedSingleton<TService> (object? serviceKey, Func<IServiceProvider,object?,TService> implementationFactory) where TService : class;
static member KeyedSingleton : obj * Func<IServiceProvider, obj, 'Service (requires 'Service : null)> -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor (requires 'Service : null)
Public Shared Function KeyedSingleton(Of TService As Class) (serviceKey As Object, implementationFactory As Func(Of IServiceProvider, Object, TService)) As ServiceDescriptor
Paramètres de type
- TService
Type du service.
Paramètres
- serviceKey
- Object
ServiceKey du service.
- implementationFactory
- Func<IServiceProvider,Object,TService>
Fabrique pour créer des instances de l’implémentation du service.
Retours
Nouvelle instance de ServiceDescriptor.
S’applique à
KeyedSingleton<TService>(Object, TService)
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
- Source:
- ServiceDescriptor.cs
Crée une instance de ServiceDescriptor avec le TService
, le implementationInstance
et la durée de vie Singleton spécifiés.
public:
generic <typename TService>
where TService : class static Microsoft::Extensions::DependencyInjection::ServiceDescriptor ^ KeyedSingleton(System::Object ^ serviceKey, TService implementationInstance);
public static Microsoft.Extensions.DependencyInjection.ServiceDescriptor KeyedSingleton<TService> (object? serviceKey, TService implementationInstance) where TService : class;
static member KeyedSingleton : obj * 'Service -> Microsoft.Extensions.DependencyInjection.ServiceDescriptor (requires 'Service : null)
Public Shared Function KeyedSingleton(Of TService As Class) (serviceKey As Object, implementationInstance As TService) As ServiceDescriptor
Paramètres de type
- TService
Type du service.
Paramètres
- serviceKey
- Object
ServiceKey du service.
- implementationInstance
- TService
Instance de l’implémentation.
Retours
Nouvelle instance de ServiceDescriptor.