言語

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

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

適用対象