ServiceDescriptor.KeyedScoped メソッド

定義

オーバーロード

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

指定した serviceimplementationFactory、および Scoped の有効期間を使用して ServiceDescriptor のインスタンスを作成します。

KeyedScoped(Type, Object, Type)

service および implementationTypeScoped の有効期間を指定して ServiceDescriptor のインスタンスを作成します。

KeyedScoped<TService,TImplementation>(Object)

指定した TServiceTImplementation、および Scoped の有効期間を使用して ServiceDescriptor のインスタンスを作成します。

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

指定した TServiceTImplementationimplementationFactory、および Scoped の有効期間を使用して ServiceDescriptor のインスタンスを作成します。

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

指定した TServiceimplementationFactory、および Scoped の有効期間を使用して ServiceDescriptor のインスタンスを作成します。

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

ソース:
ServiceDescriptor.cs
ソース:
ServiceDescriptor.cs
ソース:
ServiceDescriptor.cs
ソース:
ServiceDescriptor.cs

指定した serviceimplementationFactory、および Scoped の有効期間を使用して 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)

ソース:
ServiceDescriptor.cs
ソース:
ServiceDescriptor.cs
ソース:
ServiceDescriptor.cs
ソース:
ServiceDescriptor.cs

service および implementationTypeScoped の有効期間を指定して 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)

ソース:
ServiceDescriptor.cs
ソース:
ServiceDescriptor.cs
ソース:
ServiceDescriptor.cs
ソース:
ServiceDescriptor.cs

指定した TServiceTImplementation、および Scoped の有効期間を使用して 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>)

ソース:
ServiceDescriptor.cs
ソース:
ServiceDescriptor.cs
ソース:
ServiceDescriptor.cs
ソース:
ServiceDescriptor.cs

指定した TServiceTImplementationimplementationFactory、および Scoped の有効期間を使用して 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>)

ソース:
ServiceDescriptor.cs
ソース:
ServiceDescriptor.cs
ソース:
ServiceDescriptor.cs
ソース:
ServiceDescriptor.cs

指定した TServiceimplementationFactory、および Scoped の有効期間を使用して 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 の新しいインスタンス。

適用対象