次の方法で共有


ServicePartitionResolver コンストラクター

定義

オーバーロード

ServicePartitionResolver(CreateFabricClientDelegate)

ServicePartitionResolver クラスの新しいインスタンスを初期化します。 コンストラクターは、指定されたデリゲートを呼び出して、Service Fabric クラスターへの接続に使用される FabricClient のインスタンスを作成し、サービス解決を実行します。

ServicePartitionResolver(String[])

ServicePartitionResolver クラスの新しいインスタンスを初期化します。 コンストラクターは、指定された connectionEndpoints を使用して、Service Fabric クラスターへの接続に使用される FabricClient のインスタンスを作成し、サービス解決を実行します。

ServicePartitionResolver(CreateFabricClientDelegate, CreateFabricClientDelegate)

ServicePartitionResolver クラスの新しいインスタンスを初期化します。

ServicePartitionResolver(FabricClientSettings, String[])

ServicePartitionResolver クラスの新しいインスタンスを初期化します。 コンストラクターは、指定された設定と connectionEndpoints を使用して、Service Fabric クラスターへの接続に使用される FabricClient のインスタンスを作成し、サービス解決を実行します。

ServicePartitionResolver(SecurityCredentials, String[])

ServicePartitionResolver クラスの新しいインスタンスを初期化します。 コンストラクターは、指定されたセキュリティ資格情報と connectionEndpoints を使用して、Service Fabric クラスターへの接続に使用される FabricClient のインスタンスを作成し、サービス解決を実行します。

ServicePartitionResolver(SecurityCredentials, FabricClientSettings, String[])

ServicePartitionResolver クラスの新しいインスタンスを初期化します。 コンストラクターは、指定されたセキュリティ資格情報、設定、および connectionEndpoints を使用して、Service Fabric クラスターへの接続に使用される FabricClient のインスタンスを作成し、サービス解決を実行します。

ServicePartitionResolver(CreateFabricClientDelegate)

ServicePartitionResolver クラスの新しいインスタンスを初期化します。 コンストラクターは、指定されたデリゲートを呼び出して、Service Fabric クラスターへの接続に使用される FabricClient のインスタンスを作成し、サービス解決を実行します。

public ServicePartitionResolver (Microsoft.ServiceFabric.Services.Client.CreateFabricClientDelegate createFabricClient);
new Microsoft.ServiceFabric.Services.Client.ServicePartitionResolver : Microsoft.ServiceFabric.Services.Client.CreateFabricClientDelegate -> Microsoft.ServiceFabric.Services.Client.ServicePartitionResolver
Public Sub New (createFabricClient As CreateFabricClientDelegate)

パラメーター

createFabricClient
CreateFabricClientDelegate

ファブリック クライアントを作成するための委任。

適用対象

ServicePartitionResolver(String[])

ServicePartitionResolver クラスの新しいインスタンスを初期化します。 コンストラクターは、指定された connectionEndpoints を使用して、Service Fabric クラスターへの接続に使用される FabricClient のインスタンスを作成し、サービス解決を実行します。

public ServicePartitionResolver (params string[] connectionEndpoints);
new Microsoft.ServiceFabric.Services.Client.ServicePartitionResolver : string[] -> Microsoft.ServiceFabric.Services.Client.ServicePartitionResolver
Public Sub New (ParamArray connectionEndpoints As String())

パラメーター

connectionEndpoints
String[]

クラスターの管理エンドポイントの配列。

適用対象

ServicePartitionResolver(CreateFabricClientDelegate, CreateFabricClientDelegate)

ServicePartitionResolver クラスの新しいインスタンスを初期化します。

public ServicePartitionResolver (Microsoft.ServiceFabric.Services.Client.CreateFabricClientDelegate createFabricClient, Microsoft.ServiceFabric.Services.Client.CreateFabricClientDelegate recreateFabricClient);
new Microsoft.ServiceFabric.Services.Client.ServicePartitionResolver : Microsoft.ServiceFabric.Services.Client.CreateFabricClientDelegate * Microsoft.ServiceFabric.Services.Client.CreateFabricClientDelegate -> Microsoft.ServiceFabric.Services.Client.ServicePartitionResolver
Public Sub New (createFabricClient As CreateFabricClientDelegate, recreateFabricClient As CreateFabricClientDelegate)

パラメーター

createFabricClient
CreateFabricClientDelegate

ファブリック クライアントを作成するための委任。

recreateFabricClient
CreateFabricClientDelegate

ファブリック クライアントを再作成するデリゲート。

注釈

最初のデリゲートは、 FabricClient の作成に使用されます。 FabricClient オブジェクトが破棄され、2 つ目のデリゲートが指定された場合、パーティション解決中に、2 番目のデリゲートを使用して FabricClient をもう一度作成します。 2 番目のデリゲートは、最初のデリゲートで作成された FabricClient が破棄された場合に、FabricClient を取得または作成する別の方法を指定する方法を提供します。

適用対象

ServicePartitionResolver(FabricClientSettings, String[])

ServicePartitionResolver クラスの新しいインスタンスを初期化します。 コンストラクターは、指定された設定と connectionEndpoints を使用して、Service Fabric クラスターへの接続に使用される FabricClient のインスタンスを作成し、サービス解決を実行します。

public ServicePartitionResolver (System.Fabric.FabricClientSettings settings, params string[] connectionEndpoints);
new Microsoft.ServiceFabric.Services.Client.ServicePartitionResolver : System.Fabric.FabricClientSettings * string[] -> Microsoft.ServiceFabric.Services.Client.ServicePartitionResolver
Public Sub New (settings As FabricClientSettings, ParamArray connectionEndpoints As String())

パラメーター

settings
FabricClientSettings

ファブリック クライアントの設定。

connectionEndpoints
String[]

クラスターの管理エンドポイントの配列。

適用対象

ServicePartitionResolver(SecurityCredentials, String[])

ServicePartitionResolver クラスの新しいインスタンスを初期化します。 コンストラクターは、指定されたセキュリティ資格情報と connectionEndpoints を使用して、Service Fabric クラスターへの接続に使用される FabricClient のインスタンスを作成し、サービス解決を実行します。

public ServicePartitionResolver (System.Fabric.SecurityCredentials credential, params string[] connectionEndpoints);
new Microsoft.ServiceFabric.Services.Client.ServicePartitionResolver : System.Fabric.SecurityCredentials * string[] -> Microsoft.ServiceFabric.Services.Client.ServicePartitionResolver
Public Sub New (credential As SecurityCredentials, ParamArray connectionEndpoints As String())

パラメーター

credential
SecurityCredentials

ファブリック クライアントのセキュリティ資格情報。

connectionEndpoints
String[]

クラスターの管理エンドポイントの配列。

適用対象

ServicePartitionResolver(SecurityCredentials, FabricClientSettings, String[])

ServicePartitionResolver クラスの新しいインスタンスを初期化します。 コンストラクターは、指定されたセキュリティ資格情報、設定、および connectionEndpoints を使用して、Service Fabric クラスターへの接続に使用される FabricClient のインスタンスを作成し、サービス解決を実行します。

public ServicePartitionResolver (System.Fabric.SecurityCredentials credential, System.Fabric.FabricClientSettings settings, params string[] connectionEndpoints);
new Microsoft.ServiceFabric.Services.Client.ServicePartitionResolver : System.Fabric.SecurityCredentials * System.Fabric.FabricClientSettings * string[] -> Microsoft.ServiceFabric.Services.Client.ServicePartitionResolver
Public Sub New (credential As SecurityCredentials, settings As FabricClientSettings, ParamArray connectionEndpoints As String())

パラメーター

credential
SecurityCredentials

ファブリック クライアントのセキュリティ資格情報。

settings
FabricClientSettings

ファブリック クライアントの設定。

connectionEndpoints
String[]

クラスターの管理エンドポイントの配列。

適用対象