LocalClientSecuritySettings.IdentityVerifier Property

Definition

Gets or sets the identity verifier.

public:
 property System::ServiceModel::Security::IdentityVerifier ^ IdentityVerifier { System::ServiceModel::Security::IdentityVerifier ^ get(); void set(System::ServiceModel::Security::IdentityVerifier ^ value); };
public System.ServiceModel.Security.IdentityVerifier IdentityVerifier { get; set; }
member this.IdentityVerifier : System.ServiceModel.Security.IdentityVerifier with get, set
Public Property IdentityVerifier As IdentityVerifier

Property Value

An instance of an implementation of the abstract class IdentityVerifier.

Examples

This example shows how to return an instance of an implementation of the abstract class.

IdentityVerifier id = settings.IdentityVerifier;
Dim id As IdentityVerifier = settings.IdentityVerifier

Remarks

This property is used to verify that the remote endpoint that the client channel is communicating with matches the identity specified in the EndpointAddress that the channel is targeted for.

Applies to