CertStore Constructors

Definition

Overloads

CertStore(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

CertStore(CertStoreSpi, Provider, String, ICertStoreParameters)

Creates a CertStore object of the given type, and encapsulates the given provider implementation (SPI object) in it.

CertStore(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

protected CertStore (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Security.Cert.CertStore : nativeint * Android.Runtime.JniHandleOwnership -> Java.Security.Cert.CertStore

Parameters

javaReference
IntPtr

nativeint

A IntPtrcontaining a Java Native Interface (JNI) object reference.

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

CertStore(CertStoreSpi, Provider, String, ICertStoreParameters)

Creates a CertStore object of the given type, and encapsulates the given provider implementation (SPI object) in it.

[Android.Runtime.Register(".ctor", "(Ljava/security/cert/CertStoreSpi;Ljava/security/Provider;Ljava/lang/String;Ljava/security/cert/CertStoreParameters;)V", "")]
protected CertStore (Java.Security.Cert.CertStoreSpi? storeSpi, Java.Security.Provider? provider, string? type, Java.Security.Cert.ICertStoreParameters? params);
[<Android.Runtime.Register(".ctor", "(Ljava/security/cert/CertStoreSpi;Ljava/security/Provider;Ljava/lang/String;Ljava/security/cert/CertStoreParameters;)V", "")>]
new Java.Security.Cert.CertStore : Java.Security.Cert.CertStoreSpi * Java.Security.Provider * string * Java.Security.Cert.ICertStoreParameters -> Java.Security.Cert.CertStore

Parameters

storeSpi
CertStoreSpi

the provider implementation

provider
Provider

the provider

type
String

the type

params
ICertStoreParameters

the initialization parameters (may be null)

Attributes

Remarks

Creates a CertStore object of the given type, and encapsulates the given provider implementation (SPI object) in it.

Java documentation for java.security.cert.CertStore.CertStore(java.security.cert.CertStoreSpi, java.security.Provider, java.lang.String, java.security.cert.CertStoreParameters).

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