Exemplo n.º 1
0
 public AsyncUDPServer(string localIP, UInt16 port, AsyncUDPCallback callback)
 {
     m_ip = localIP;
      m_port = port;
      m_callback = callback;
 }
 public static AsyncUDPServer GenerateUDPServer(string ip, UInt16 port, AsyncUDPCallback callback)
 {
     return new AsyncUDPServer(ip, port, callback);
 }