NSUrlSessionHandler.CheckCertificateRevocationList 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 a value that indicates whether the certificate is checked against the certificate authority revocation list.
public bool CheckCertificateRevocationList { get; set; }
member this.CheckCertificateRevocationList : bool with get, set
Property Value
Remarks
This is the same as setting CertificateChainPolicy.RevocationMode = X509RevocationMode.Online (if enabling the check) or X509RevocationMode.NoCheck (if disabling the check).
This only has an effect if a custom server certificate validation callback is being used ('ServerCertificateCustomValidationCallback' is set).