WifiEnterpriseConfig.GetClientCertificateChain 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.
Get the complete client certificate chain in the same order as it was last supplied.
[Android.Runtime.Register("getClientCertificateChain", "()[Ljava/security/cert/X509Certificate;", "GetGetClientCertificateChainHandler", ApiSince=26)]
public virtual Java.Security.Cert.X509Certificate[]? GetClientCertificateChain ();
[<Android.Runtime.Register("getClientCertificateChain", "()[Ljava/security/cert/X509Certificate;", "GetGetClientCertificateChainHandler", ApiSince=26)>]
abstract member GetClientCertificateChain : unit -> Java.Security.Cert.X509Certificate[]
override this.GetClientCertificateChain : unit -> Java.Security.Cert.X509Certificate[]
Returns
X.509 client certificates
- Attributes
Remarks
Get the complete client certificate chain in the same order as it was last supplied.
If the chain was last supplied by a call to #setClientKeyEntry(java.security.PrivateKey, java.security.cert.X509Certificate)
with a non-null * certificate instance, a single-element array containing the certificate will be * returned. If #setClientKeyEntryWithCertificateChain( java.security.PrivateKey, java.security.cert.X509Certificate[])
was last called with a non-empty array, this array will be returned in the same order as it was supplied. Otherwise, null
will be returned.
Java documentation for android.net.wifi.WifiEnterpriseConfig.getClientCertificateChain()
.
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.