次の方法で共有


ServiceClient コンストラクター

定義

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

オーバーロード

ServiceClient()

ServiceClient クラスの新しいインスタンスを既定値で初期化します。

ServiceClient(String)

指定されたエンドポイント構成名を使用して ServiceClient クラスの新しいインスタンスを初期化します。

ServiceClient(Binding, EndpointAddress)

指定されたバインドとリモート アドレスを持つ ServiceClient クラスの新しいインスタンスを初期化します。

ServiceClient(String, EndpointAddress)

指定されたエンドポイント構成名とリモート アドレスを持つ ServiceClient クラスの新しいインスタンスを初期化します。

ServiceClient(String, String)

指定されたエンドポイント構成名と文字列で表したリモート アドレスを持つ ServiceClient クラスの新しいインスタンスを初期化します。

ServiceClient()

ServiceClient クラスの新しいインスタンスを既定値で初期化します。

public:
 ServiceClient();
public ServiceClient ();
Public Sub New ()

適用対象

ServiceClient(String)

指定されたエンドポイント構成名を使用して ServiceClient クラスの新しいインスタンスを初期化します。

public:
 ServiceClient(System::String ^ endpointConfigurationName);
public ServiceClient (string endpointConfigurationName);
new Microsoft.MasterDataServices.ServiceClient : string -> Microsoft.MasterDataServices.ServiceClient
Public Sub New (endpointConfigurationName As String)

パラメーター

endpointConfigurationName
String

エンドポイント構成の名前。

適用対象

ServiceClient(Binding, EndpointAddress)

指定されたバインドとリモート アドレスを持つ ServiceClient クラスの新しいインスタンスを初期化します。

public:
 ServiceClient(System::ServiceModel::Channels::Binding ^ binding, System::ServiceModel::EndpointAddress ^ remoteAddress);
public ServiceClient (System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress);
new Microsoft.MasterDataServices.ServiceClient : System.ServiceModel.Channels.Binding * System.ServiceModel.EndpointAddress -> Microsoft.MasterDataServices.ServiceClient
Public Sub New (binding As Binding, remoteAddress As EndpointAddress)

パラメーター

binding
Binding

サービス クライアントがマスター データ サービスとの通信に使用するバインディング。

remoteAddress
EndpointAddress

サービス クライアントがマスター データ サービスとの通信に使用するリモート アドレス。

適用対象

ServiceClient(String, EndpointAddress)

指定されたエンドポイント構成名とリモート アドレスを持つ ServiceClient クラスの新しいインスタンスを初期化します。

public:
 ServiceClient(System::String ^ endpointConfigurationName, System::ServiceModel::EndpointAddress ^ remoteAddress);
public ServiceClient (string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress);
new Microsoft.MasterDataServices.ServiceClient : string * System.ServiceModel.EndpointAddress -> Microsoft.MasterDataServices.ServiceClient
Public Sub New (endpointConfigurationName As String, remoteAddress As EndpointAddress)

パラメーター

endpointConfigurationName
String

エンドポイント構成の名前。

remoteAddress
EndpointAddress

サービス クライアントがマスター データ サービスとの通信に使用するリモート アドレス。

適用対象

ServiceClient(String, String)

指定されたエンドポイント構成名と文字列で表したリモート アドレスを持つ ServiceClient クラスの新しいインスタンスを初期化します。

public:
 ServiceClient(System::String ^ endpointConfigurationName, System::String ^ remoteAddress);
public ServiceClient (string endpointConfigurationName, string remoteAddress);
new Microsoft.MasterDataServices.ServiceClient : string * string -> Microsoft.MasterDataServices.ServiceClient
Public Sub New (endpointConfigurationName As String, remoteAddress As String)

パラメーター

endpointConfigurationName
String

エンドポイント構成の名前。

remoteAddress
String

リモート アドレスの文字列表現です。

適用対象