Exemplo n.º 1
0
Arquivo: ZMQ.cs Projeto: knocte/netmq
 public static bool Connect(SocketBase s, String addr)
 {
     if (s == null || !s.CheckTag())
     {
         throw new InvalidOperationException();
     }
     return s.Connect(addr);
 }