コード例 #1
0
		public override IAsyncResult BeginAuthenticateAsClient (string targetHost, XX509CertificateCollection clientCertificates, XSslProtocols enabledSslProtocols, bool checkCertificateRevocation, AsyncCallback asyncCallback, object asyncState)
		{
			return Impl.BeginAuthenticateAsClient (targetHost, clientCertificates, (XSslProtocols)enabledSslProtocols, checkCertificateRevocation, asyncCallback, asyncState);
		}
コード例 #2
0
		public override Task AuthenticateAsServerAsync (X509Certificate serverCertificate, bool clientCertificateRequired, XSslProtocols enabledSslProtocols, bool checkCertificateRevocation)
		{
			return Impl.AuthenticateAsServerAsync (serverCertificate, clientCertificateRequired, (XSslProtocols)enabledSslProtocols, checkCertificateRevocation);
		}
コード例 #3
0
		public override void AuthenticateAsClient (string targetHost, XX509CertificateCollection clientCertificates, XSslProtocols enabledSslProtocols, bool checkCertificateRevocation)
		{
			Impl.AuthenticateAsClient (targetHost, clientCertificates, (XSslProtocols)enabledSslProtocols, checkCertificateRevocation);
		}
コード例 #4
0
		public override void AuthenticateAsServer (X509Certificate serverCertificate, bool clientCertificateRequired, XSslProtocols enabledSslProtocols, bool checkCertificateRevocation)
		{
			Impl.AuthenticateAsServer (serverCertificate, clientCertificateRequired, (XSslProtocols)enabledSslProtocols, checkCertificateRevocation);
		}
コード例 #5
0
		public override IAsyncResult BeginAuthenticateAsServer (X509Certificate serverCertificate, bool clientCertificateRequired, XSslProtocols enabledSslProtocols, bool checkCertificateRevocation, AsyncCallback asyncCallback, object asyncState)
		{
			return Impl.BeginAuthenticateAsServer (serverCertificate, clientCertificateRequired, (XSslProtocols)enabledSslProtocols, checkCertificateRevocation, asyncCallback, asyncState);
		}
コード例 #6
0
ファイル: MonoSslStreamImpl.cs プロジェクト: patryk9200/mono
 public void AuthenticateAsClient(string targetHost, XX509CertificateCollection clientCertificates, XSslProtocols enabledSslProtocols, bool checkCertificateRevocation)
 {
     Impl.AuthenticateAsClient(targetHost, clientCertificates, (SslProtocols)enabledSslProtocols, checkCertificateRevocation);
 }
コード例 #7
0
ファイル: MonoSslStreamImpl.cs プロジェクト: JokerGITHUB/mono
		public override Task AuthenticateAsClientAsync (string targetHost, XX509CertificateCollection clientCertificates, XSslProtocols enabledSslProtocols, bool checkCertificateRevocation)
		{
			return Impl.AuthenticateAsClientAsync (targetHost, clientCertificates, (SslProtocols)enabledSslProtocols, checkCertificateRevocation);
		}
コード例 #8
0
ファイル: MonoSslStreamImpl.cs プロジェクト: patryk9200/mono
 public Task AuthenticateAsServerAsync(X509Certificate serverCertificate, bool clientCertificateRequired, XSslProtocols enabledSslProtocols, bool checkCertificateRevocation)
 {
     return(Impl.AuthenticateAsServerAsync(serverCertificate, clientCertificateRequired, (SslProtocols)enabledSslProtocols, checkCertificateRevocation));
 }
コード例 #9
0
ファイル: MonoSslStreamImpl.cs プロジェクト: patryk9200/mono
 public Task AuthenticateAsClientAsync(string targetHost, XX509CertificateCollection clientCertificates, XSslProtocols enabledSslProtocols, bool checkCertificateRevocation)
 {
     return(Impl.AuthenticateAsClientAsync(targetHost, clientCertificates, (SslProtocols)enabledSslProtocols, checkCertificateRevocation));
 }
コード例 #10
0
ファイル: MonoSslStreamImpl.cs プロジェクト: patryk9200/mono
 public IAsyncResult BeginAuthenticateAsServer(X509Certificate serverCertificate, bool clientCertificateRequired, XSslProtocols enabledSslProtocols, bool checkCertificateRevocation, AsyncCallback asyncCallback, object asyncState)
 {
     return(Impl.BeginAuthenticateAsServer(serverCertificate, clientCertificateRequired, (SslProtocols)enabledSslProtocols, checkCertificateRevocation, asyncCallback, asyncState));
 }
コード例 #11
0
ファイル: MonoSslStreamImpl.cs プロジェクト: patryk9200/mono
 public void AuthenticateAsServer(X509Certificate serverCertificate, bool clientCertificateRequired, XSslProtocols enabledSslProtocols, bool checkCertificateRevocation)
 {
     Impl.AuthenticateAsServer(serverCertificate, clientCertificateRequired, (SslProtocols)enabledSslProtocols, checkCertificateRevocation);
 }
コード例 #12
0
ファイル: MonoSslStreamImpl.cs プロジェクト: patryk9200/mono
 public IAsyncResult BeginAuthenticateAsClient(string targetHost, XX509CertificateCollection clientCertificates, XSslProtocols enabledSslProtocols, bool checkCertificateRevocation, AsyncCallback asyncCallback, object asyncState)
 {
     return(Impl.BeginAuthenticateAsClient(targetHost, clientCertificates, (SslProtocols)enabledSslProtocols, checkCertificateRevocation, asyncCallback, asyncState));
 }