ClientCredentials コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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");