Xamarin.Android Http client that allow me to add client certificate from KeyStore [duplicate]
问题 This question already has answers here : xamarin.android adding client certificate (2 answers) Closed 5 days ago . I am trying to add client certificate whitch I am getting from this method: private X509Certificate[] GetCertificateChain(string alias) { try { return KeyChain.GetCertificateChain(this, alias); } catch (KeyChainException e) { } return null; } System.Net.Http.HttpClientHandler doesn't allow me to addclient certificate. NotImplemented exception is thrown. Any solution? Maybe other