IPostConfigureOptions<TOptions> インターフェイス

定義

TOptions の種類を構成するものを表します。 注: これらはすべての IConfigureOptions<TOptions> の後に実行されます。

generic <typename TOptions>
 where TOptions : classpublic interface class IPostConfigureOptions
public interface IPostConfigureOptions<in TOptions> where TOptions : class
type IPostConfigureOptions<'Options (requires 'Options : null)> = interface
Public Interface IPostConfigureOptions(Of In TOptions)

型パラメーター

TOptions

構成されているオプションの種類。

この型パラメーターは反変です。 つまり、指定した型、または弱い派生型のいずれかを使用することができます。 共変性および反変性の詳細については、「ジェネリックの共変性と反変性」をご覧ください。
派生

メソッド

PostConfigure(String, TOptions)

TOptions インスタンスを構成するために呼び出されます。

適用対象