ServiceCollectionHostedServiceExtensions.AddHostedService メソッド
定義
オーバーロード
AddHostedService<THostedService>(IServiceCollection) |
指定した型の IHostedService の登録を追加します。Add an IHostedService registration for the given type. |
AddHostedService<THostedService>(IServiceCollection, Func<IServiceProvider,THostedService>) |
指定した型の IHostedService の登録を追加します。Add an IHostedService registration for the given type. |
AddHostedService<THostedService>(IServiceCollection)
指定した型の IHostedService の登録を追加します。Add an IHostedService registration for the given type.
public:
generic <typename THostedService>
where THostedService : class, Microsoft::Extensions::Hosting::IHostedService[System::Runtime::CompilerServices::Extension]
static Microsoft::Extensions::DependencyInjection::IServiceCollection ^ AddHostedService(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services);
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddHostedService<THostedService> (this Microsoft.Extensions.DependencyInjection.IServiceCollection services) where THostedService : class, Microsoft.Extensions.Hosting.IHostedService;
static member AddHostedService : Microsoft.Extensions.DependencyInjection.IServiceCollection -> Microsoft.Extensions.DependencyInjection.IServiceCollection (requires 'HostedService : null and 'HostedService :> Microsoft.Extensions.Hosting.IHostedService)
<Extension()>
Public Function AddHostedService(Of THostedService As {Class, IHostedService}) (services As IServiceCollection) As IServiceCollection
型パラメーター
- THostedService
IHostedService登録する。An IHostedService to register.
パラメーター
- services
- IServiceCollection
登録する先の IServiceCollection。The IServiceCollection to register with.
戻り値
元の IServiceCollection。The original IServiceCollection.
適用対象
AddHostedService<THostedService>(IServiceCollection, Func<IServiceProvider,THostedService>)
指定した型の IHostedService の登録を追加します。Add an IHostedService registration for the given type.
public:
generic <typename THostedService>
where THostedService : class, Microsoft::Extensions::Hosting::IHostedService[System::Runtime::CompilerServices::Extension]
static Microsoft::Extensions::DependencyInjection::IServiceCollection ^ AddHostedService(Microsoft::Extensions::DependencyInjection::IServiceCollection ^ services, Func<IServiceProvider ^, THostedService> ^ implementationFactory);
public static Microsoft.Extensions.DependencyInjection.IServiceCollection AddHostedService<THostedService> (this Microsoft.Extensions.DependencyInjection.IServiceCollection services, Func<IServiceProvider,THostedService> implementationFactory) where THostedService : class, Microsoft.Extensions.Hosting.IHostedService;
static member AddHostedService : Microsoft.Extensions.DependencyInjection.IServiceCollection * Func<IServiceProvider, 'HostedService (requires 'HostedService : null and 'HostedService :> Microsoft.Extensions.Hosting.IHostedService)> -> Microsoft.Extensions.DependencyInjection.IServiceCollection (requires 'HostedService : null and 'HostedService :> Microsoft.Extensions.Hosting.IHostedService)
<Extension()>
Public Function AddHostedService(Of THostedService As {Class, IHostedService}) (services As IServiceCollection, implementationFactory As Func(Of IServiceProvider, THostedService)) As IServiceCollection
型パラメーター
- THostedService
IHostedService登録する。An IHostedService to register.
パラメーター
- services
- IServiceCollection
登録する先の IServiceCollection。The IServiceCollection to register with.
- implementationFactory
- Func<IServiceProvider,THostedService>
サービス実装の新しいインスタンスを作成するファクトリ。A factory to create new instances of the service implementation.
戻り値
元の IServiceCollection。The original IServiceCollection.