Share via


DnsEndpointIdentity コンストラクター

定義

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

オーバーロード

DnsEndpointIdentity(Claim)

要求から DnsEndpointIdentity クラスの新しいインスタンスを初期化します。

DnsEndpointIdentity(String)

このクラスの新しいインスタンスを DNS 名から初期化します。

DnsEndpointIdentity(Claim)

ソース:
DnsEndpointIdentity.cs
ソース:
DnsEndpointIdentity.cs
ソース:
DnsEndpointIdentity.cs

要求から DnsEndpointIdentity クラスの新しいインスタンスを初期化します。

public:
 DnsEndpointIdentity(System::IdentityModel::Claims::Claim ^ identity);
public DnsEndpointIdentity (System.IdentityModel.Claims.Claim identity);
new System.ServiceModel.DnsEndpointIdentity : System.IdentityModel.Claims.Claim -> System.ServiceModel.DnsEndpointIdentity
Public Sub New (identity As Claim)

パラメーター

identity
Claim

Claim

例外

identitynullです。

注釈

identity は、Initialize メソッドによるエンドポイント ID を作成するために使用されます。

適用対象

DnsEndpointIdentity(String)

ソース:
DnsEndpointIdentity.cs
ソース:
DnsEndpointIdentity.cs
ソース:
DnsEndpointIdentity.cs

このクラスの新しいインスタンスを DNS 名から初期化します。

public:
 DnsEndpointIdentity(System::String ^ dnsName);
public DnsEndpointIdentity (string dnsName);
new System.ServiceModel.DnsEndpointIdentity : string -> System.ServiceModel.DnsEndpointIdentity
Public Sub New (dnsName As String)

パラメーター

dnsName
String

DNS 名。

例外

dnsNamenullです。

dnsName のクレームの種類は、Dns ではありません。

注釈

dnsName は DNS クレームを作成するために使用され、Initialize メソッドによってエンドポイント ID が作成されます。

適用対象