LocalClientSecuritySettings.IdentityVerifier Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.