NSUrlSessionHandler.CheckCertificateRevocationList Property

Definition

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).

Applies to