KeyChainManager.GetCertificateChain Method
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 the certificate chain of the given scoped certificate.
[Android.Runtime.Register("getCertificateChain", "(Ljava/lang/String;I)Ljava/util/List;", "", ApiSince=37)]
public System.Collections.Generic.IList<Java.Security.Cert.X509Certificate> GetCertificateChain(string alias, Android.Security.KeyChainManagerKeyPairScope scope);
[<Android.Runtime.Register("getCertificateChain", "(Ljava/lang/String;I)Ljava/util/List;", "", ApiSince=37)>]
member this.GetCertificateChain : string * Android.Security.KeyChainManagerKeyPairScope -> System.Collections.Generic.IList<Java.Security.Cert.X509Certificate>
Parameters
- alias
- String
The alias of the desired certificate chain.
The scope to search (#KEYPAIR_SCOPE_USER or
#KEYPAIR_SCOPE_DEVICE).
Returns
The list of X509Certificates representing the chain, or an empty list if
no certificate exists for the given alias/scope or if access to the key is not
granted.
- Attributes