ServiceDescriptor.KeyedScoped 方法

定义

重载

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

创建具有指定 serviceimplementationFactoryScoped 生存期的 ServiceDescriptor 实例。

KeyedScoped(Type, Object, Type)

创建具有指定 serviceimplementationTypeScoped 生存期的 ServiceDescriptor 实例。

KeyedScoped<TService,TImplementation>(Object)

创建具有指定 TServiceTImplementationScoped 生存期的 ServiceDescriptor 实例。

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

创建具有指定 TServiceTImplementationimplementationFactoryScoped 生存期的 ServiceDescriptor 实例。

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

创建具有指定 TServiceimplementationFactoryScoped 生存期的 ServiceDescriptor 实例。

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

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

创建具有指定 serviceimplementationFactoryScoped 生存期的 ServiceDescriptor 实例。

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);
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

参数

service
Type

服务的类型。

serviceKey
Object

服务的 ServiceKey

implementationFactory
Func<IServiceProvider,Object,Object>

用于创建服务实现的新实例的工厂。

返回

ServiceDescriptor 的新实例。

适用于

KeyedScoped(Type, Object, Type)

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

创建具有指定 serviceimplementationTypeScoped 生存期的 ServiceDescriptor 实例。

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

参数

service
Type

服务的类型。

serviceKey
Object

服务的 ServiceKey

implementationType
Type

实现的类型。

返回

ServiceDescriptor 的新实例。

适用于

KeyedScoped<TService,TImplementation>(Object)

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

创建具有指定 TServiceTImplementationScoped 生存期的 ServiceDescriptor 实例。

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

类型参数

TService

服务的类型。

TImplementation

实现的类型。

参数

serviceKey
Object

服务的 ServiceKey

返回

ServiceDescriptor 的新实例。

适用于

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

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

创建具有指定 TServiceTImplementationimplementationFactoryScoped 生存期的 ServiceDescriptor 实例。

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;
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

类型参数

TService

服务的类型。

TImplementation

实现的类型。

参数

serviceKey
Object

服务的 ServiceKey

implementationFactory
Func<IServiceProvider,Object,TImplementation>

用于创建服务实现的新实例的工厂。

返回

ServiceDescriptor 的新实例。

适用于

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

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

创建具有指定 TServiceimplementationFactoryScoped 生存期的 ServiceDescriptor 实例。

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;
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

类型参数

TService

服务的类型。

参数

serviceKey
Object

服务的 ServiceKey

implementationFactory
Func<IServiceProvider,Object,TService>

用于创建服务实现的新实例的工厂。

返回

ServiceDescriptor 的新实例。

适用于