DnsEndpointIdentity Конструкторы
Определение
Инициализирует новый экземпляр класса DnsEndpointIdentity.Initializes a new instance of the DnsEndpointIdentity class.
Перегрузки
DnsEndpointIdentity(Claim) |
Инициализирует новый экземпляр класса DnsEndpointIdentity на основании утверждения.Initializes a new instance of the DnsEndpointIdentity class from a claim. |
DnsEndpointIdentity(String) |
Инициализирует новый экземпляр класса на основании DNS-имени.Initializes a new instance of this class from a DNS name. |
DnsEndpointIdentity(Claim)
Инициализирует новый экземпляр класса DnsEndpointIdentity на основании утверждения.Initializes a new instance of the DnsEndpointIdentity class from a claim.
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
имеет значение null
.identity
is null
.
Комментарии
Параметр identity
используется методом Initialize для создания удостоверения конечной точки.The identity
is used to create an endpoint identity by the Initialize method.
DnsEndpointIdentity(String)
Инициализирует новый экземпляр класса на основании DNS-имени.Initializes a new instance of this class from a DNS name.
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-имя.The DNS name.
Исключения
Свойство dnsName
имеет значение null
.dnsName
is null
.
Комментарии
Параметр dnsName
используется для создания утверждения DNS, а удостоверение конечной точки создается методом Initialize.The dnsName
is used to create a DNS claim and an endpoint identity is created by the Initialize method.