CertificateRevokedException Constructors
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
CertificateRevokedException(IntPtr, JniHandleOwnership) | |
CertificateRevokedException(Date, CRLReason, X500Principal, IDictionary<String,IExtension>) |
Constructs a |
CertificateRevokedException(IntPtr, JniHandleOwnership)
protected CertificateRevokedException (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Security.Cert.CertificateRevokedException : nativeint * Android.Runtime.JniHandleOwnership -> Java.Security.Cert.CertificateRevokedException
Parameters
- javaReference
-
IntPtr
nativeint
- transfer
- JniHandleOwnership
Remarks
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
CertificateRevokedException(Date, CRLReason, X500Principal, IDictionary<String,IExtension>)
Constructs a CertificateRevokedException
with
the specified revocation date, reason code, authority name, and map
of extensions.
[Android.Runtime.Register(".ctor", "(Ljava/util/Date;Ljava/security/cert/CRLReason;Ljavax/security/auth/x500/X500Principal;Ljava/util/Map;)V", "", ApiSince=24)]
public CertificateRevokedException (Java.Util.Date? revocationDate, Java.Security.Cert.CRLReason? reason, Javax.Security.Auth.X500.X500Principal? authority, System.Collections.Generic.IDictionary<string,Java.Security.Cert.IExtension>? extensions);
[<Android.Runtime.Register(".ctor", "(Ljava/util/Date;Ljava/security/cert/CRLReason;Ljavax/security/auth/x500/X500Principal;Ljava/util/Map;)V", "", ApiSince=24)>]
new Java.Security.Cert.CertificateRevokedException : Java.Util.Date * Java.Security.Cert.CRLReason * Javax.Security.Auth.X500.X500Principal * System.Collections.Generic.IDictionary<string, Java.Security.Cert.IExtension> -> Java.Security.Cert.CertificateRevokedException
Parameters
- revocationDate
- Date
the date on which the certificate was revoked. The date is copied to protect against subsequent modification.
- reason
- CRLReason
the revocation reason
- authority
- X500Principal
the X500Principal
that represents the name
of the authority that signed the certificate's revocation status
information
- extensions
- IDictionary<String,IExtension>
a map of X.509 Extensions. Each key is an OID String that maps to the corresponding Extension. The map is copied to prevent subsequent modification.
- Attributes
Remarks
Constructs a CertificateRevokedException
with the specified revocation date, reason code, authority name, and map of extensions.
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.