ConfigureNamedOptions<TOptions,TDep1,TDep2> Class

Definition

generic <typename TOptions, typename TDep1, typename TDep2>
 where TOptions : class where TDep1 : class where TDep2 : classpublic ref class ConfigureNamedOptions : Microsoft::Extensions::Options::IConfigureNamedOptions<TOptions>, Microsoft::Extensions::Options::IConfigureOptions<TOptions>
public class ConfigureNamedOptions<TOptions,TDep1,TDep2> : Microsoft.Extensions.Options.IConfigureNamedOptions<TOptions>, Microsoft.Extensions.Options.IConfigureOptions<TOptions> where TOptions : class where TDep1 : class where TDep2 : class
type ConfigureNamedOptions<'Options, 'TDep1, 'TDep2 (requires 'Options : null and 'TDep1 : null and 'TDep2 : null)> = class
    interface IConfigureNamedOptions<'Options (requires 'Options : null)>
    interface IConfigureOptions<'Options (requires 'Options : null)>
Public Class ConfigureNamedOptions(Of TOptions, TDep1, TDep2)
Implements IConfigureNamedOptions(Of TOptions), IConfigureOptions(Of TOptions)

Type Parameters

TOptions

Options type being configured.

TDep1

First dependency type.

TDep2

Second dependency type.

Inheritance
ConfigureNamedOptions<TOptions,TDep1,TDep2>
Implements

Constructors

ConfigureNamedOptions<TOptions,TDep1,TDep2>(String, TDep1, TDep2, Action<TOptions,TDep1,TDep2>)

Constructor.

Properties

Action

The configuration action.

Dependency1

The first dependency.

Dependency2

The second dependency.

Name

The options name.

Methods

Configure(String, TOptions)

Invokes the registered configure Action if the name matches.

Configure(TOptions)

Invoked to configure a TOptions instance with the DefaultName.

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to