ServicePointManager.ServerCertificateValidationCallback Property
Gets or sets the callback to validate a server certificate.
Assembly: System (in System.dll)
public static RemoteCertificateValidationCallback ServerCertificateValidationCallback { get; set; }
Property Value
Type: System.Net.Security.RemoteCertificateValidationCallbackA RemoteCertificateValidationCallback. The default value is null.
An application can set the ServerCertificateValidationCallback property to a method to use for custom validation by the client of the server certificate. When doing custom validation, the sender parameter passed to the RemoteCertificateValidationCallback can be a host string name or an object derived from WebRequest (HttpWebRequest, for example) depending on the CertificatePolicy property.
When custom validation is not used, the certificate name is compared with host name used to create the request. For example, if Create(String) was passed a parameter of "https://www.contoso.com/default.hmtl", the default behavior is for the client to check the certificate against www.contoso.com.
- SecurityPermission
to set the ServerCertificateValidationCallback property. Associated enumeration: SecurityPermissionFlag.Infrastructure.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.