OptionsServiceCollectionExtensions.AddOptionsWithValidateOnStart メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
AddOptionsWithValidateOnStart<TOptions,TValidateOptions>(IServiceCollection, String) |
オプションを使用するために必要なサービスを追加し、実行時ではなく起動時にオプション検証チェックを適用します。 |
AddOptionsWithValidateOnStart<TOptions>(IServiceCollection, String) |
オプションを使用するために必要なサービスを追加し、実行時ではなく起動時にオプション検証チェックを適用します。 |
AddOptionsWithValidateOnStart<TOptions,TValidateOptions>(IServiceCollection, String)
オプションを使用するために必要なサービスを追加し、実行時ではなく起動時にオプション検証チェックを適用します。
public static Microsoft.Extensions.Options.OptionsBuilder<TOptions> AddOptionsWithValidateOnStart<TOptions,TValidateOptions> (this Microsoft.Extensions.DependencyInjection.IServiceCollection services, string? name = default) where TOptions : class where TValidateOptions : class, Microsoft.Extensions.Options.IValidateOptions<TOptions>;
static member AddOptionsWithValidateOnStart : Microsoft.Extensions.DependencyInjection.IServiceCollection * string -> Microsoft.Extensions.Options.OptionsBuilder<'Options (requires 'Options : null)> (requires 'Options : null and 'ValidateOptions : null and 'ValidateOptions :> Microsoft.Extensions.Options.IValidateOptions<'Options>)
<Extension()>
Public Function AddOptionsWithValidateOnStart(Of TOptions As Class, TValidateOptions As Class) (services As IServiceCollection, Optional name As String = Nothing) As OptionsBuilder(Of TOptions)
型パラメーター
- TOptions
構成するオプションの種類。
- TValidateOptions
IValidateOptions<TOptions> 検証コントロールの型。
パラメーター
- services
- IServiceCollection
サービスを追加する IServiceCollection。
- name
- String
オプション インスタンスの名前。
戻り値
追加の呼び出しをチェーンできるように、IServiceCollection。
注釈
ValidateOnStart<TOptions>(OptionsBuilder<TOptions>) 拡張機能は、このメソッドによって呼び出されます。
適用対象
AddOptionsWithValidateOnStart<TOptions>(IServiceCollection, String)
オプションを使用するために必要なサービスを追加し、実行時ではなく起動時にオプション検証チェックを適用します。
public static Microsoft.Extensions.Options.OptionsBuilder<TOptions> AddOptionsWithValidateOnStart<TOptions> (this Microsoft.Extensions.DependencyInjection.IServiceCollection services, string? name = default) where TOptions : class;
static member AddOptionsWithValidateOnStart : Microsoft.Extensions.DependencyInjection.IServiceCollection * string -> Microsoft.Extensions.Options.OptionsBuilder<'Options (requires 'Options : null)> (requires 'Options : null)
<Extension()>
Public Function AddOptionsWithValidateOnStart(Of TOptions As Class) (services As IServiceCollection, Optional name As String = Nothing) As OptionsBuilder(Of TOptions)
型パラメーター
- TOptions
構成するオプションの種類。
パラメーター
- services
- IServiceCollection
サービスを追加する IServiceCollection。
- name
- String
オプション インスタンスの名前。
戻り値
追加の呼び出しをチェーンできるように、IServiceCollection。
注釈
ValidateOnStart<TOptions>(OptionsBuilder<TOptions>) 拡張機能は、このメソッドによって呼び出されます。
適用対象
.NET