次の方法で共有


ClientCredentials コンストラクター

定義

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

オーバーロード

ClientCredentials()

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

ClientCredentials(ClientCredentials)

これはコピー コンストラクターです。

注釈

このクラスを使用する最も一般的な方法は、直接インスタンス化するのではなく、クライアント オブジェクトのプロパティにアクセスすることです。 この方法を次のコードに示します。

WSHttpBinding b = new WSHttpBinding();
EndpointAddress ea = new EndpointAddress("http://localhost/Calculator");
CalculatorClient client = new CalculatorClient(b, ea);
IssuedTokenClientCredential itcc = client.ClientCredentials.IssuedToken;

itcc.LocalIssuerAddress = new EndpointAddress("http://fabrikam.com/sts");

ClientCredentials()

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

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

このクラスを使用する最も一般的な方法は、直接インスタンス化するのではなく、クライアント オブジェクトのプロパティにアクセスすることです。 この方法を次のコードに示します。

WSHttpBinding b = new WSHttpBinding();
EndpointAddress ea = new EndpointAddress("http://localhost/Calculator");
CalculatorClient client = new CalculatorClient(b, ea);
IssuedTokenClientCredential itcc = client.ClientCredentials.IssuedToken;

itcc.LocalIssuerAddress = new EndpointAddress("http://fabrikam.com/sts");

注釈

このコンストラクターは、既定のClientCredentials設定でオブジェクトを作成します。たとえば、 SupportInteractive = true

適用対象

ClientCredentials(ClientCredentials)

これはコピー コンストラクターです。

protected:
 ClientCredentials(System::ServiceModel::Description::ClientCredentials ^ other);
protected ClientCredentials (System.ServiceModel.Description.ClientCredentials other);
new System.ServiceModel.Description.ClientCredentials : System.ServiceModel.Description.ClientCredentials -> System.ServiceModel.Description.ClientCredentials
Protected Sub New (other As ClientCredentials)

パラメーター

other
ClientCredentials

ClientCredentials。 新しく構築されたインスタンスのすべてのプロパティに、このパラメーターの値が反映されます。

このクラスを使用する最も一般的な方法は、直接インスタンス化するのではなく、クライアント オブジェクトのプロパティにアクセスすることです。 この方法を次のコードに示します。

WSHttpBinding b = new WSHttpBinding();
EndpointAddress ea = new EndpointAddress("http://localhost/Calculator");
CalculatorClient client = new CalculatorClient(b, ea);
IssuedTokenClientCredential itcc = client.ClientCredentials.IssuedToken;

itcc.LocalIssuerAddress = new EndpointAddress("http://fabrikam.com/sts");

適用対象