BootstrapProviderConfiguration.RegisterBootstrapProvider メソッド

定義

オーバーロード

RegisterBootstrapProvider(GlobalConfiguration, String, String, IDictionary<String,String>)

特定のブートストラップ プロバイダーを登録します。

RegisterBootstrapProvider<T>(GlobalConfiguration, String, IDictionary<String,String>)

指定された型の T を登録します。ここで T 、 はブートストラップ プロバイダーです

RegisterBootstrapProvider(GlobalConfiguration, String, String, IDictionary<String,String>)

特定のブートストラップ プロバイダーを登録します。

public static void RegisterBootstrapProvider (this Orleans.Runtime.Configuration.GlobalConfiguration config, string providerTypeFullName, string providerName, System.Collections.Generic.IDictionary<string,string> properties = default);
static member RegisterBootstrapProvider : Orleans.Runtime.Configuration.GlobalConfiguration * string * string * System.Collections.Generic.IDictionary<string, string> -> unit
<Extension()>
Public Sub RegisterBootstrapProvider (config As GlobalConfiguration, providerTypeFullName As String, providerName As String, Optional properties As IDictionary(Of String, String) = Nothing)

パラメーター

config
GlobalConfiguration

構成オブジェクト

providerTypeFullName
String

ブートストラップ プロバイダーの種類のフル ネーム

providerName
String

ブートストラップ プロバイダーの名前

properties
IDictionary<String,String>

初期化時にブートストラップ プロバイダーに渡されるプロパティ

適用対象

RegisterBootstrapProvider<T>(GlobalConfiguration, String, IDictionary<String,String>)

指定された型の T を登録します。ここで T 、 はブートストラップ プロバイダーです

public static void RegisterBootstrapProvider<T> (this Orleans.Runtime.Configuration.GlobalConfiguration config, string providerName, System.Collections.Generic.IDictionary<string,string> properties = default) where T : Orleans.Providers.IBootstrapProvider;
static member RegisterBootstrapProvider : Orleans.Runtime.Configuration.GlobalConfiguration * string * System.Collections.Generic.IDictionary<string, string> -> unit (requires 'T :> Orleans.Providers.IBootstrapProvider)
<Extension()>
Public Sub RegisterBootstrapProvider(Of T As IBootstrapProvider) (config As GlobalConfiguration, providerName As String, Optional properties As IDictionary(Of String, String) = Nothing)

型パラメーター

T

インターフェイスを実装 IBootstrapProvider する非抽象型

パラメーター

config
GlobalConfiguration

構成オブジェクト

providerName
String

ブートストラップ プロバイダーの名前

properties
IDictionary<String,String>

初期化時にブートストラップ プロバイダーに渡されるプロパティ

適用対象