Working on a winform application and connecting to socket, I am able to create SSLStream and authenticate. using following code
// Authenticate ourself as a client.
this.sslStream.AuthenticateAsClient(SSL_TARGET_HOST);
Now sometime application throw AuthenticationException if on client machine certificate is not installed.
I wonder if there is a way to check that a particular certificate is installed on client machine before calling to connect?