PKIXCertPathBuilderResult 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
PKIXCertPathBuilderResult(IntPtr, JniHandleOwnership) |
A constructor used when creating managed representations of JNI objects; called by the runtime. |
PKIXCertPathBuilderResult(CertPath, TrustAnchor, IPolicyNode, IPublicKey) |
Creates an instance of |
PKIXCertPathBuilderResult(IntPtr, JniHandleOwnership)
A constructor used when creating managed representations of JNI objects; called by the runtime.
protected PKIXCertPathBuilderResult (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Security.Cert.PKIXCertPathBuilderResult : nativeint * Android.Runtime.JniHandleOwnership -> Java.Security.Cert.PKIXCertPathBuilderResult
Parameters
- transfer
- JniHandleOwnership
A JniHandleOwnershipindicating how to handle javaReference
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
PKIXCertPathBuilderResult(CertPath, TrustAnchor, IPolicyNode, IPublicKey)
Creates an instance of PKIXCertPathBuilderResult
containing the specified parameters.
[Android.Runtime.Register(".ctor", "(Ljava/security/cert/CertPath;Ljava/security/cert/TrustAnchor;Ljava/security/cert/PolicyNode;Ljava/security/PublicKey;)V", "")]
public PKIXCertPathBuilderResult (Java.Security.Cert.CertPath? certPath, Java.Security.Cert.TrustAnchor? trustAnchor, Java.Security.Cert.IPolicyNode? policyTree, Java.Security.IPublicKey? subjectPublicKey);
[<Android.Runtime.Register(".ctor", "(Ljava/security/cert/CertPath;Ljava/security/cert/TrustAnchor;Ljava/security/cert/PolicyNode;Ljava/security/PublicKey;)V", "")>]
new Java.Security.Cert.PKIXCertPathBuilderResult : Java.Security.Cert.CertPath * Java.Security.Cert.TrustAnchor * Java.Security.Cert.IPolicyNode * Java.Security.IPublicKey -> Java.Security.Cert.PKIXCertPathBuilderResult
Parameters
- certPath
- CertPath
the validated CertPath
- trustAnchor
- TrustAnchor
a TrustAnchor
describing the CA that
served as a trust anchor for the certification path
- policyTree
- IPolicyNode
the immutable valid policy tree, or null
if there are no valid policies
- subjectPublicKey
- IPublicKey
the public key of the subject
- Attributes
Exceptions
if the cerPath
, trustAnchor
or subjectPolicyKey
is null
.
Remarks
Creates an instance of PKIXCertPathBuilderResult
containing the specified parameters.
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.