예제 #1
0
 extern static /* OSStatus */ SslStatus SSLSetClientSideAuthenticate(/* SSLContextRef */ IntPtr context, SslAuthenticate auth);
예제 #2
0
        public void SetClientSideAuthenticate(SslAuthenticate auth)
        {
            var result = SSLSetClientSideAuthenticate(Handle, auth);

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