Read() 공개 메소드

Read the command response
public Read ( ) : byte[]
리턴 byte[]
예제 #1
0
 /// <summary>
 /// Connects to the registry end point
 /// </summary>
 public void Connect(SslProtocols sslProtocols = SslProtocols.Tls)
 {
     transport.Connect(sslProtocols);
     transport.Read();
 }
예제 #2
0
 /// <summary>
 /// Connects to the registry end point
 /// </summary>
 public void Connect()
 {
     transport.Connect();
     transport.Read();
 }