INamedContextualOptions<TOptions,TContext> 接口

定义

用于检索已命名配置的 TOptions 实例。

generic <typename TOptions, typename TContext>
 where TOptions : class where TContext : IOptionsContextpublic interface class INamedContextualOptions : Microsoft::Extensions::Options::Contextual::IContextualOptions<TOptions, TContext>
public interface INamedContextualOptions<TOptions,TContext> : Microsoft.Extensions.Options.Contextual.IContextualOptions<TOptions,TContext> where TOptions : class where TContext : IOptionsContext
type INamedContextualOptions<'Options, 'Context (requires 'Options : null and 'Context :> IOptionsContext)> = interface
    interface IContextualOptions<'Options, 'Context (requires 'Options : null and 'Context :> IOptionsContext)>
Public Interface INamedContextualOptions(Of TOptions, TContext)
Implements IContextualOptions(Of TOptions, TContext)

类型参数

TOptions

正在请求的选项类型。

TContext

定义此请求上下文的类型。

实现

方法

GetAsync(String, TContext, CancellationToken)

获取已命名配置的 TOptions 实例。

GetAsync(TContext, CancellationToken)

获取配置的 TOptions 实例。

(继承自 IContextualOptions<TOptions,TContext>)

适用于