PKIXCertPathChecker.Check Method
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.
Overloads
Check(Certificate) |
To be added |
Check(Certificate, ICollection<String>) |
Performs the check(s) on the specified certificate using its internal state and removes any critical extensions that it processes from the specified collection of OID strings that represent the unresolved critical extensions. |
Check(Certificate)
To be added
[Android.Runtime.Register("check", "(Ljava/security/cert/Certificate;)V", "GetCheck_Ljava_security_cert_Certificate_Handler", ApiSince=24)]
public virtual void Check (Java.Security.Cert.Certificate? cert);
[<Android.Runtime.Register("check", "(Ljava/security/cert/Certificate;)V", "GetCheck_Ljava_security_cert_Certificate_Handler", ApiSince=24)>]
abstract member Check : Java.Security.Cert.Certificate -> unit
override this.Check : Java.Security.Cert.Certificate -> unit
Parameters
- cert
- Certificate
Implements
- Attributes
Remarks
To be added
This implementation calls check(cert, java.util.Collections.<String>emptySet())
.
Java documentation for java.security.cert.PKIXCertPathChecker.check(java.security.cert.Certificate)
.
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.
Applies to
Check(Certificate, ICollection<String>)
Performs the check(s) on the specified certificate using its internal state and removes any critical extensions that it processes from the specified collection of OID strings that represent the unresolved critical extensions.
[Android.Runtime.Register("check", "(Ljava/security/cert/Certificate;Ljava/util/Collection;)V", "GetCheck_Ljava_security_cert_Certificate_Ljava_util_Collection_Handler")]
public abstract void Check (Java.Security.Cert.Certificate? cert, System.Collections.Generic.ICollection<string>? unresolvedCritExts);
[<Android.Runtime.Register("check", "(Ljava/security/cert/Certificate;Ljava/util/Collection;)V", "GetCheck_Ljava_security_cert_Certificate_Ljava_util_Collection_Handler")>]
abstract member Check : Java.Security.Cert.Certificate * System.Collections.Generic.ICollection<string> -> unit
Parameters
- cert
- Certificate
the Certificate
to be checked
- unresolvedCritExts
- ICollection<String>
a Collection
of OID strings
representing the current set of unresolved critical extensions
- Attributes
Remarks
Performs the check(s) on the specified certificate using its internal state and removes any critical extensions that it processes from the specified collection of OID strings that represent the unresolved critical extensions. The certificates are presented in the order specified by the init
method.
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.