CertStore 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
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(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
- 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.
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.