Udostępnij za pośrednictwem


EndpointAddress.Identity Właściwość

Definicja

Pobiera tożsamość dla punktu końcowego użytego do jego uwierzytelnienia.

public:
 property System::ServiceModel::EndpointIdentity ^ Identity { System::ServiceModel::EndpointIdentity ^ get(); };
public System.ServiceModel.EndpointIdentity Identity { get; }
member this.Identity : System.ServiceModel.EndpointIdentity
Public ReadOnly Property Identity As EndpointIdentity

Wartość właściwości

EndpointIdentity

Element EndpointIdentity dla punktu końcowego.

Przykłady

EndpointIdentity endpointIdentity =
    EndpointIdentity.CreateUpnIdentity(WindowsIdentity.GetCurrent().Name);
EndpointAddress endpointAddress = new EndpointAddress(
    new Uri
    ("http://localhost:8003/servicemodelsamples/service/incode/identity"),
    endpointIdentity, addressHeaders);

EndpointIdentity identity = endpointAddress.Identity;

Uwagi

Zapewnia tożsamość, która umożliwia uwierzytelnianie punktu końcowego przez inne punkty końcowe wymieniające komunikaty z nim.

Dotyczy