TLS client certificate authentication on UWP Windows Store app
问题 I'm trying to connect to a server that uses TLS with client certificate authentication. Below is a code snippet: async Task TestClientCertAuth() { int iWinInetError = 0; Uri theUri = new Uri("http://xxx-xxx"); try { using (HttpBaseProtocolFilter baseProtocolFilter = new HttpBaseProtocolFilter()) { // Task<Certificate> GetClientCertificate() displays a UI with all available // certificates with and returns the user selecter certificate. An // oversimplified implementation is included for