X509CRLSelector.CertificateChecking 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.
Returns the certificate being checked. -or- Sets the certificate being checked.
public virtual Java.Security.Cert.X509Certificate? CertificateChecking { [Android.Runtime.Register("getCertificateChecking", "()Ljava/security/cert/X509Certificate;", "GetGetCertificateCheckingHandler")] get; [Android.Runtime.Register("setCertificateChecking", "(Ljava/security/cert/X509Certificate;)V", "GetSetCertificateChecking_Ljava_security_cert_X509Certificate_Handler")] set; }
[<get: Android.Runtime.Register("getCertificateChecking", "()Ljava/security/cert/X509Certificate;", "GetGetCertificateCheckingHandler")>]
[<set: Android.Runtime.Register("setCertificateChecking", "(Ljava/security/cert/X509Certificate;)V", "GetSetCertificateChecking_Ljava_security_cert_X509Certificate_Handler")>]
member this.CertificateChecking : Java.Security.Cert.X509Certificate with get, set
Property Value
the certificate being checked (or null
)
- Attributes
Remarks
Property getter documentation:
Returns the certificate being checked. This is not a criterion. Rather, it is optional information that may help a CertStore
find CRLs that would be relevant when checking revocation for the specified certificate. If the value returned is null
, then no such optional information is provided.
Java documentation for java.security.cert.X509CRLSelector.getCertificateChecking()
.
Property setter documentation:
Sets the certificate being checked. This is not a criterion. Rather, it is optional information that may help a CertStore
find CRLs that would be relevant when checking revocation for the specified certificate. If null
is specified, then no such optional information is provided.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.