NamedServiceConfiguratorExtensions.ConfigureComponent メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
ConfigureComponent<TComponent>(INamedServiceConfigurator, Func<IServiceProvider,String,TComponent>) |
名前付きサービスにシングルトン コンポーネントを追加します。 |
ConfigureComponent<TOptions,TComponent>(INamedServiceConfigurator, Func<IServiceProvider,String,TComponent>, Action<OptionsBuilder<TOptions>>) |
名前付きサービスにシングルトン コンポーネントを追加し、名前付きサービスのオプションを構成します。 |
ConfigureComponent<TComponent>(INamedServiceConfigurator, Func<IServiceProvider,String,TComponent>)
名前付きサービスにシングルトン コンポーネントを追加します。
public static void ConfigureComponent<TComponent> (this Orleans.Hosting.INamedServiceConfigurator configurator, Func<IServiceProvider,string,TComponent> factory) where TComponent : class;
static member ConfigureComponent : Orleans.Hosting.INamedServiceConfigurator * Func<IServiceProvider, string, 'Component (requires 'Component : null)> -> unit (requires 'Component : null)
<Extension()>
Public Sub ConfigureComponent(Of TComponent As Class) (configurator As INamedServiceConfigurator, factory As Func(Of IServiceProvider, String, TComponent))
型パラメーター
- TComponent
コンポーネント サービスの種類。
パラメーター
- configurator
- INamedServiceConfigurator
コンポーネントが構成される名前付きコンフィギュレーター。
- factory
- Func<IServiceProvider,String,TComponent>
名前付きサービスのコンポーネントの作成に使用されるファクトリ。
適用対象
ConfigureComponent<TOptions,TComponent>(INamedServiceConfigurator, Func<IServiceProvider,String,TComponent>, Action<OptionsBuilder<TOptions>>)
名前付きサービスにシングルトン コンポーネントを追加し、名前付きサービスのオプションを構成します。
public static void ConfigureComponent<TOptions,TComponent> (this Orleans.Hosting.INamedServiceConfigurator configurator, Func<IServiceProvider,string,TComponent> factory, Action<Microsoft.Extensions.Options.OptionsBuilder<TOptions>> configureOptions = default) where TOptions : class, new() where TComponent : class;
static member ConfigureComponent : Orleans.Hosting.INamedServiceConfigurator * Func<IServiceProvider, string, 'Component (requires 'Component : null)> * Action<Microsoft.Extensions.Options.OptionsBuilder<'Options>> -> unit (requires 'Options : null and 'Options : (new : unit -> 'Options) and 'Component : null)
<Extension()>
Public Sub ConfigureComponent(Of TOptions As {Class, New}, TComponent As {Class, New}) (configurator As INamedServiceConfigurator, factory As Func(Of IServiceProvider, String, TComponent), Optional configureOptions As Action(Of OptionsBuilder(Of TOptions)) = Nothing)
型パラメーター
- TOptions
構成されているオプションの種類。
- TComponent
登録されているコンポーネント サービスの種類。
パラメーター
- configurator
- INamedServiceConfigurator
コンポーネントとオプションを構成する名前付きコンフィギュレーター。
- factory
- Func<IServiceProvider,String,TComponent>
名前付きサービスのコンポーネントの作成に使用されるファクトリ。
- configureOptions
- Action<OptionsBuilder<TOptions>>
名前付きサービスのオプションを構成するために使用されるデリゲート。