KeyedServiceExtensions.AddSingletonNamedService メソッド

定義

オーバーロード

AddSingletonNamedService<TService,TInstance>(IServiceCollection, String)

サービスという名前のシングルトンを登録する

AddSingletonNamedService<TService>(IServiceCollection, String, Func<IServiceProvider,String,TService>)

サービスという名前のシングルトンを登録する

AddSingletonNamedService<TService>(IServiceCollection, String, Type)

AddSingletonNamedService<TService,TInstance>(IServiceCollection, String)

ソース:
KeyedService.cs

サービスという名前のシングルトンを登録する

public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddSingletonNamedService<TService,TInstance> (this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, string name) where TService : class where TInstance : class, TService;
static member AddSingletonNamedService : Microsoft.Extensions.DependencyInjection.IServiceCollection * string -> Microsoft.Extensions.DependencyInjection.IServiceCollection (requires 'Service : null)
<Extension()>
Public Function AddSingletonNamedService(Of TService As Class, TInstance As Class) (collection As IServiceCollection, name As String) As IServiceCollection

型パラメーター

TService
TInstance

パラメーター

collection
IServiceCollection
name
String

戻り値

適用対象

AddSingletonNamedService<TService>(IServiceCollection, String, Func<IServiceProvider,String,TService>)

ソース:
KeyedService.cs

サービスという名前のシングルトンを登録する

public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddSingletonNamedService<TService> (this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, string name, Func<IServiceProvider,string,TService> factory) where TService : class;
static member AddSingletonNamedService : Microsoft.Extensions.DependencyInjection.IServiceCollection * string * Func<IServiceProvider, string, 'Service (requires 'Service : null)> -> Microsoft.Extensions.DependencyInjection.IServiceCollection (requires 'Service : null)
<Extension()>
Public Function AddSingletonNamedService(Of TService As Class) (collection As IServiceCollection, name As String, factory As Func(Of IServiceProvider, String, TService)) As IServiceCollection

型パラメーター

TService

パラメーター

collection
IServiceCollection
name
String
factory
Func<IServiceProvider,String,TService>

戻り値

適用対象

AddSingletonNamedService<TService>(IServiceCollection, String, Type)

public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddSingletonNamedService<TService> (this Microsoft.Extensions.DependencyInjection.IServiceCollection collection, string name, Type implementationType) where TService : class;
static member AddSingletonNamedService : Microsoft.Extensions.DependencyInjection.IServiceCollection * string * Type -> Microsoft.Extensions.DependencyInjection.IServiceCollection (requires 'Service : null)
<Extension()>
Public Function AddSingletonNamedService(Of TService As Class) (collection As IServiceCollection, name As String, implementationType As Type) As IServiceCollection

型パラメーター

TService

パラメーター

collection
IServiceCollection
name
String
implementationType
Type

戻り値

適用対象