Connect() public method

Connect to the registry end point
public Connect ( SslProtocols sslProtocols ) : void
sslProtocols SslProtocols
return void
Esempio n. 1
0
 /// <summary>
 /// Connects to the registry end point
 /// </summary>
 public void Connect(SslProtocols sslProtocols = SslProtocols.Tls)
 {
     transport.Connect(sslProtocols);
     transport.Read();
 }
Esempio n. 2
0
 /// <summary>
 /// Connects to the registry end point
 /// </summary>
 public void Connect()
 {
     transport.Connect();
     transport.Read();
 }