ServiceDescriptor.KeyedScoped Метод

Определение

Перегрузки

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

Создает экземпляр ServiceDescriptor с указанными service, implementationFactory и временем существования Scoped.

KeyedScoped(Type, Object, Type)

Создает экземпляр ServiceDescriptor с указанными service и implementationType, а также временем существования Scoped.

KeyedScoped<TService,TImplementation>(Object)

Создает экземпляр ServiceDescriptor с указанными TService, TImplementation и временем существования Scoped.

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

Создает экземпляр ServiceDescriptor с указанными TService, TImplementation, implementationFactory и временем существования Scoped.

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

Создает экземпляр ServiceDescriptor с указанными TService, implementationFactory и временем существования Scoped.

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

Исходный код:
ServiceDescriptor.cs
Исходный код:
ServiceDescriptor.cs
Исходный код:
ServiceDescriptor.cs
Исходный код:
ServiceDescriptor.cs

Создает экземпляр ServiceDescriptor с указанными service, implementationFactory и временем существования 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);
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)

Исходный код:
ServiceDescriptor.cs
Исходный код:
ServiceDescriptor.cs
Исходный код:
ServiceDescriptor.cs
Исходный код:
ServiceDescriptor.cs

Создает экземпляр ServiceDescriptor с указанными service и implementationType, а также временем существования 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

Параметры

service
Type

Тип службы.

serviceKey
Object

Объект ServiceKey службы.

implementationType
Type

Тип реализации.

Возвращаемое значение

Новый экземпляр класса ServiceDescriptor.

Применяется к

KeyedScoped<TService,TImplementation>(Object)

Исходный код:
ServiceDescriptor.cs
Исходный код:
ServiceDescriptor.cs
Исходный код:
ServiceDescriptor.cs
Исходный код:
ServiceDescriptor.cs

Создает экземпляр ServiceDescriptor с указанными TService, TImplementation и временем существования 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

Параметры типа

TService

Тип службы.

TImplementation

Тип реализации.

Параметры

serviceKey
Object

Объект ServiceKey службы.

Возвращаемое значение

Новый экземпляр класса ServiceDescriptor.

Применяется к

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

Исходный код:
ServiceDescriptor.cs
Исходный код:
ServiceDescriptor.cs
Исходный код:
ServiceDescriptor.cs
Исходный код:
ServiceDescriptor.cs

Создает экземпляр ServiceDescriptor с указанными TService, TImplementation, implementationFactory и временем существования Scoped.

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

Исходный код:
ServiceDescriptor.cs
Исходный код:
ServiceDescriptor.cs
Исходный код:
ServiceDescriptor.cs
Исходный код:
ServiceDescriptor.cs

Создает экземпляр ServiceDescriptor с указанными TService, implementationFactory и временем существования 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;
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.

Применяется к