次の方法で共有


OptionConfigureExtensionMethods.ConfigureFormatter メソッド

定義

オーバーロード

ConfigureFormatter<TOptions,TOptionFormatter>(IServiceCollection)

のオプション フォーマッタを TOptions構成します。

ConfigureFormatter<TOptions>(IServiceCollection)

のオプション フォーマッタを TOptions構成します。

ConfigureFormatter<TOptions,TOptionFormatter>(IServiceCollection)

ソース:
OptionFormatterExtensionMethods.cs

のオプション フォーマッタを TOptions構成します。

public static Microsoft.Extensions.DependencyInjection.IServiceCollection ConfigureFormatter<TOptions,TOptionFormatter> (this Microsoft.Extensions.DependencyInjection.IServiceCollection services) where TOptions : class where TOptionFormatter : class, Orleans.IOptionFormatter<TOptions>;
static member ConfigureFormatter : Microsoft.Extensions.DependencyInjection.IServiceCollection -> Microsoft.Extensions.DependencyInjection.IServiceCollection (requires 'Options : null and 'OptionFormatter : null and 'OptionFormatter :> Orleans.IOptionFormatter<'Options>)
<Extension()>
Public Function ConfigureFormatter(Of TOptions As Class, TOptionFormatter As Class) (services As IServiceCollection) As IServiceCollection

型パラメーター

TOptions

オプションの種類。

TOptionFormatter

オプション フォーマッタの種類。

パラメーター

services
IServiceCollection

サービス。

戻り値

他の IServiceCollection呼び出しとチェーンするための 。

適用対象

ConfigureFormatter<TOptions>(IServiceCollection)

ソース:
OptionFormatterExtensionMethods.cs

のオプション フォーマッタを TOptions構成します。

public static Microsoft.Extensions.DependencyInjection.IServiceCollection ConfigureFormatter<TOptions> (this Microsoft.Extensions.DependencyInjection.IServiceCollection services) where TOptions : class, new();
static member ConfigureFormatter : Microsoft.Extensions.DependencyInjection.IServiceCollection -> Microsoft.Extensions.DependencyInjection.IServiceCollection (requires 'Options : null and 'Options : (new : unit -> 'Options))
<Extension()>
Public Function ConfigureFormatter(Of TOptions As {Class, New}) (services As IServiceCollection) As IServiceCollection

型パラメーター

TOptions

オプションの種類。

パラメーター

services
IServiceCollection

サービス。

戻り値

他の IServiceCollection呼び出しとチェーンするための 。

注釈

既定以外のフォーマッタが構成されていない限り、既定のオプション フォーマッタが使用されます。

適用対象