Exemplo n.º 1
0
 extern static /* OSStatus */ SslStatus SSLSetClientSideAuthenticate(/* SSLContextRef */ IntPtr context, SslAuthenticate auth);
Exemplo n.º 2
0
        public void SetClientSideAuthenticate(SslAuthenticate auth)
        {
            var result = SSLSetClientSideAuthenticate(Handle, auth);

            CheckStatusAndThrow(result);
        }
Exemplo n.º 3
0
 static extern SslStatus SSLSetClientSideAuthenticate(/* SSLContextRef */ IntPtr context, SslAuthenticate auth);
Exemplo n.º 4
0
 public SslStatus SetClientSideAuthenticate(SslAuthenticate auth)
 {
     result = SSLSetClientSideAuthenticate(Handle, auth);
     return(result);
 }
Exemplo n.º 5
0
 public void SetClientSideAuthenticate(SslAuthenticate auth)
 {
     var result = SSLSetClientSideAuthenticate (Handle, auth);
     CheckStatusAndThrow (result);
 }