ServiceDescriptor.KeyedSingleton Método

Definición

Sobrecargas

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

Crea una instancia de ServiceDescriptor con los valores serviceType y implementationFactory especificados y la duración de Singleton.

KeyedSingleton(Type, Object, Object)

Crea una instancia de ServiceDescriptor con los valores serviceType y implementationInstance especificados y la duración de Singleton.

KeyedSingleton(Type, Object, Type)

Crea una instancia de ServiceDescriptor con los valores service y implementationType especificados y la duración de Singleton.

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

Crea una instancia de ServiceDescriptor con los valores TService, TImplementation y implementationFactory especificados y la duración de Singleton.

KeyedSingleton<TService,TImplementation>(Object)

Crea una instancia de ServiceDescriptor con los valores TService y TImplementation especificados y la duración de Singleton.

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

Crea una instancia de ServiceDescriptor con los valores TService y implementationFactory especificados y la duración de Singleton.

KeyedSingleton<TService>(Object, TService)

Crea una instancia de ServiceDescriptor con los valores TService y implementationInstance especificados y la duración de Singleton.

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

Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs

Crea una instancia de ServiceDescriptor con los valores serviceType y implementationFactory especificados y la duración de Singleton.

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

Parámetros

serviceType
Type

Tipo de servicio.

serviceKey
Object

El ServiceKey del servicio.

implementationFactory
Func<IServiceProvider,Object,Object>

Un generador para crear instancias de la implementación del servicio.

Devoluciones

Nueva instancia de ServiceDescriptor.

Se aplica a

KeyedSingleton(Type, Object, Object)

Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs

Crea una instancia de ServiceDescriptor con los valores serviceType y implementationInstance especificados y la duración de Singleton.

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

Parámetros

serviceType
Type

Tipo de servicio.

serviceKey
Object

El ServiceKey del servicio.

implementationInstance
Object

La instancia de la implementación.

Devoluciones

Nueva instancia de ServiceDescriptor.

Se aplica a

KeyedSingleton(Type, Object, Type)

Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs

Crea una instancia de ServiceDescriptor con los valores service y implementationType especificados y la duración de Singleton.

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

Parámetros

service
Type

Tipo de servicio.

serviceKey
Object

El ServiceKey del servicio.

implementationType
Type

El tipo de la implementación.

Devoluciones

Nueva instancia de ServiceDescriptor.

Se aplica a

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

Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs

Crea una instancia de ServiceDescriptor con los valores TService, TImplementation y implementationFactory especificados y la duración de Singleton.

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

Parámetros de tipo

TService

Tipo de servicio.

TImplementation

El tipo de la implementación.

Parámetros

serviceKey
Object

El ServiceKey del servicio.

implementationFactory
Func<IServiceProvider,Object,TImplementation>

Un generador para crear instancias de la implementación del servicio.

Devoluciones

Nueva instancia de ServiceDescriptor.

Se aplica a

KeyedSingleton<TService,TImplementation>(Object)

Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs

Crea una instancia de ServiceDescriptor con los valores TService y TImplementation especificados y la duración de Singleton.

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

Parámetros de tipo

TService

Tipo de servicio.

TImplementation

El tipo de la implementación.

Parámetros

serviceKey
Object

El ServiceKey del servicio.

Devoluciones

Nueva instancia de ServiceDescriptor.

Se aplica a

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

Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs

Crea una instancia de ServiceDescriptor con los valores TService y implementationFactory especificados y la duración de Singleton.

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

Parámetros de tipo

TService

Tipo de servicio.

Parámetros

serviceKey
Object

El ServiceKey del servicio.

implementationFactory
Func<IServiceProvider,Object,TService>

Un generador para crear instancias de la implementación del servicio.

Devoluciones

Nueva instancia de ServiceDescriptor.

Se aplica a

KeyedSingleton<TService>(Object, TService)

Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs
Source:
ServiceDescriptor.cs

Crea una instancia de ServiceDescriptor con los valores TService y implementationInstance especificados y la duración de Singleton.

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

Parámetros de tipo

TService

Tipo de servicio.

Parámetros

serviceKey
Object

El ServiceKey del servicio.

implementationInstance
TService

La instancia de la implementación.

Devoluciones

Nueva instancia de ServiceDescriptor.

Se aplica a