PostConfigureOptions<TOptions,TDep1,TDep2,TDep3,TDep4,TDep5> Constructor
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.
Constructor.
public:
PostConfigureOptions(System::String ^ name, TDep1 dependency1, TDep2 dependency2, TDep3 dependency3, TDep4 dependency4, TDep5 dependency5, Action<TOptions, TDep1, TDep2, TDep3, TDep4, TDep5> ^ action);
public PostConfigureOptions (string? name, TDep1 dependency1, TDep2 dependency2, TDep3 dependency3, TDep4 dependency4, TDep5 dependency5, Action<TOptions,TDep1,TDep2,TDep3,TDep4,TDep5>? action);
new Microsoft.Extensions.Options.PostConfigureOptions<'Options, 'TDep1, 'TDep2, 'TDep3, 'TDep4, 'TDep5 (requires 'Options : null and 'TDep1 : null and 'TDep2 : null and 'TDep3 : null and 'TDep4 : null and 'TDep5 : null)> : string * 'TDep1 * 'TDep2 * 'TDep3 * 'TDep4 * 'TDep5 * Action<'Options, 'TDep1, 'TDep2, 'TDep3, 'TDep4, 'TDep5 (requires 'Options : null and 'TDep1 : null and 'TDep2 : null and 'TDep3 : null and 'TDep4 : null and 'TDep5 : null)> -> Microsoft.Extensions.Options.PostConfigureOptions<'Options, 'TDep1, 'TDep2, 'TDep3, 'TDep4, 'TDep5 (requires 'Options : null and 'TDep1 : null and 'TDep2 : null and 'TDep3 : null and 'TDep4 : null and 'TDep5 : null)>
Public Sub New (name As String, dependency1 As TDep1, dependency2 As TDep2, dependency3 As TDep3, dependency4 As TDep4, dependency5 As TDep5, action As Action(Of TOptions, TDep1, TDep2, TDep3, TDep4, TDep5))
Parameters
- name
- String
The name of the options.
- dependency1
- TDep1
A dependency.
- dependency2
- TDep2
A second dependency.
- dependency3
- TDep3
A third dependency.
- dependency4
- TDep4
A fourth dependency.
- dependency5
- TDep5
A fifth dependency.
- action
- Action<TOptions,TDep1,TDep2,TDep3,TDep4,TDep5>
The action to register.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.