Connect() public method

Connect to the registry end point
public Connect ( SslProtocols sslProtocols ) : void
sslProtocols SslProtocols
return void
コード例 #1
0
ファイル: Service.cs プロジェクト: sorenlorentzen/EppLib.NET
 /// <summary>
 /// Connects to the registry end point
 /// </summary>
 public void Connect(SslProtocols sslProtocols = SslProtocols.Tls)
 {
     transport.Connect(sslProtocols);
     transport.Read();
 }
コード例 #2
0
ファイル: Service.cs プロジェクト: ac931274/EppLib.NET
 /// <summary>
 /// Connects to the registry end point
 /// </summary>
 public void Connect()
 {
     transport.Connect();
     transport.Read();
 }