ServiceDescriptor.KeyedScoped Metod

Definition

Överlagringar

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

Skapar en instans av ServiceDescriptor med angiven service, implementationFactoryoch livslängd.Scoped

KeyedScoped(Type, Object, Type)

Skapar en instans av ServiceDescriptor med angiven service och implementationType och livslängd.Scoped

KeyedScoped<TService,TImplementation>(Object)

Skapar en instans av ServiceDescriptor med angiven TService, TImplementationoch livslängd.Scoped

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

Skapar en instans av ServiceDescriptor med angiven TService, TImplementation, implementationFactoryoch Scoped livslängd.

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

Skapar en instans av ServiceDescriptor med angiven TService, implementationFactoryoch livslängd.Scoped

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

Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs

Skapar en instans av ServiceDescriptor med angiven service, implementationFactoryoch livslängd.Scoped

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

Parametrar

service
Type

Typ av tjänst.

serviceKey
Object

Tjänstens ServiceKey .

implementationFactory
Func<IServiceProvider,Object,Object>

En fabrik för att skapa nya instanser av tjänstimplementeringen.

Returer

En ny instans av ServiceDescriptor.

Gäller för

KeyedScoped(Type, Object, Type)

Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs

Skapar en instans av ServiceDescriptor med angiven service och implementationType och livslängd.Scoped

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

Parametrar

service
Type

Typ av tjänst.

serviceKey
Object

Tjänstens ServiceKey .

implementationType
Type

Typen av implementering.

Returer

En ny instans av ServiceDescriptor.

Gäller för

KeyedScoped<TService,TImplementation>(Object)

Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs

Skapar en instans av ServiceDescriptor med angiven TService, TImplementationoch livslängd.Scoped

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

Typparametrar

TService

Typ av tjänst.

TImplementation

Typen av implementering.

Parametrar

serviceKey
Object

Tjänstens ServiceKey .

Returer

En ny instans av ServiceDescriptor.

Gäller för

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

Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs

Skapar en instans av ServiceDescriptor med angiven TService, TImplementation, implementationFactoryoch Scoped livslängd.

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

Typparametrar

TService

Typ av tjänst.

TImplementation

Typen av implementering.

Parametrar

serviceKey
Object

Tjänstens ServiceKey .

implementationFactory
Func<IServiceProvider,Object,TImplementation>

En fabrik för att skapa nya instanser av tjänstimplementeringen.

Returer

En ny instans av ServiceDescriptor.

Gäller för

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

Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs
Källa:
ServiceDescriptor.cs

Skapar en instans av ServiceDescriptor med angiven TService, implementationFactoryoch livslängd.Scoped

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

Typparametrar

TService

Typ av tjänst.

Parametrar

serviceKey
Object

Tjänstens ServiceKey .

implementationFactory
Func<IServiceProvider,Object,TService>

En fabrik för att skapa nya instanser av tjänstimplementeringen.

Returer

En ny instans av ServiceDescriptor.

Gäller för