ConfigureNamedOptions<TOptions,TDep1,TDep2> 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:
ConfigureNamedOptions(System::String ^ name, TDep1 dependency, TDep2 dependency2, Action<TOptions, TDep1, TDep2> ^ action);
public ConfigureNamedOptions (string? name, TDep1 dependency, TDep2 dependency2, Action<TOptions,TDep1,TDep2>? action);
new Microsoft.Extensions.Options.ConfigureNamedOptions<'Options, 'TDep1, 'TDep2 (requires 'Options : null and 'TDep1 : null and 'TDep2 : null)> : string * 'TDep1 * 'TDep2 * Action<'Options, 'TDep1, 'TDep2 (requires 'Options : null and 'TDep1 : null and 'TDep2 : null)> -> Microsoft.Extensions.Options.ConfigureNamedOptions<'Options, 'TDep1, 'TDep2 (requires 'Options : null and 'TDep1 : null and 'TDep2 : null)>
Public Sub New (name As String, dependency As TDep1, dependency2 As TDep2, action As Action(Of TOptions, TDep1, TDep2))
Parameters
- name
- String
The name of the options.
- dependency
- TDep1
A dependency.
- dependency2
- TDep2
A second dependency.
- action
- Action<TOptions,TDep1,TDep2>
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.