PKIXParameters.CertStores Property
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.
Returns an immutable List
of CertStore
s that
are used to find certificates and CRLs. -or- Sets the list of CertStore
s 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 CertStore
s
(may be empty, but never null
)
- Attributes
Remarks
Property getter documentation:
Returns an immutable List
of CertStore
s that are used to find certificates and CRLs.
Java documentation for java.security.cert.PKIXParameters.getCertStores()
.
Property setter documentation:
Sets the list of CertStore
s to be used in finding certificates and CRLs. May be null
, in which case no CertStore
s will be used. The first CertStore
s in the list may be preferred to those that appear later.
Note that the List
is copied to protect against subsequent modifications.
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.