PostConfigureOptions<TOptions,TDep1,TDep2,TDep3>.PostConfigure Method

Definition

Overloads

PostConfigure(TOptions)

Invoked to configure a TOptions instance using the DefaultName.

PostConfigure(String, TOptions)

Invokes the registered initialization Action if the name matches.

PostConfigure(TOptions)

Source:
PostConfigureOptions.cs
Source:
PostConfigureOptions.cs
Source:
PostConfigureOptions.cs
Source:
PostConfigureOptions.cs

Invoked to configure a TOptions instance using the DefaultName.

public:
 void PostConfigure(TOptions options);
public void PostConfigure (TOptions options);
member this.PostConfigure : 'Options -> unit
Public Sub PostConfigure (options As TOptions)

Parameters

options
TOptions

The options instance to configured.

Applies to

PostConfigure(String, TOptions)

Source:
PostConfigureOptions.cs
Source:
PostConfigureOptions.cs
Source:
PostConfigureOptions.cs
Source:
PostConfigureOptions.cs

Invokes the registered initialization Action if the name matches.

public:
 virtual void PostConfigure(System::String ^ name, TOptions options);
public virtual void PostConfigure (string name, TOptions options);
public virtual void PostConfigure (string? name, TOptions options);
abstract member PostConfigure : string * 'Options -> unit
override this.PostConfigure : string * 'Options -> unit
Public Overridable Sub PostConfigure (name As String, options As TOptions)

Parameters

name
String

The name of the options instance being configured.

options
TOptions

The options instance to configured.

Implements

Applies to