PKIXParameters.CertStores Property

Definition

Returns an immutable List of CertStores that are used to find certificates and CRLs. -or- Sets the list of CertStores to be used in finding certificates and CRLs.

public virtual System.Collections.Generic.IList<Java.Security.Cert.CertStore>? CertStores { [Android.Runtime.Register("getCertStores", "()Ljava/util/List;", "GetGetCertStoresHandler")] get; [Android.Runtime.Register("setCertStores", "(Ljava/util/List;)V", "GetSetCertStores_Ljava_util_List_Handler")] set; }
[<get: Android.Runtime.Register("getCertStores", "()Ljava/util/List;", "GetGetCertStoresHandler")>]
[<set: Android.Runtime.Register("setCertStores", "(Ljava/util/List;)V", "GetSetCertStores_Ljava_util_List_Handler")>]
member this.CertStores : System.Collections.Generic.IList<Java.Security.Cert.CertStore> with get, set

Property Value

an immutable List of CertStores (may be empty, but never null)

Attributes

Remarks

Property getter documentation:

Returns an immutable List of CertStores that are used to find certificates and CRLs.

Java documentation for java.security.cert.PKIXParameters.getCertStores().

Property setter documentation:

Sets the list of CertStores to be used in finding certificates and CRLs. May be null, in which case no CertStores will be used. The first CertStores in the list may be preferred to those that appear later.

Note that the List is copied to protect against subsequent modifications.

Java documentation for java.security.cert.PKIXParameters.setCertStores(java.util.List<java.security.cert.CertStore>).

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