PostConfigureOptions<TOptions,TDep>.PostConfigure Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
PostConfigure(TOptions) |
Invoked to configure a |
PostConfigure(String, TOptions) |
Invokes the registered initialization Action if the |
PostConfigure(TOptions)
- Source:
- PostConfigureOptions.cs
- 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
- 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);
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.