Exemplo n.º 1
0
        public KService(IPEndPoint rIpEndPoint)
        {
            this.mTimeNow = (uint)TimeAssist.Now();
            this.mSocket  = new UdpClient(rIpEndPoint);

            this.StartRecv();
        }
Exemplo n.º 2
0
 public KService()
 {
     this.mTimeNow = (uint)TimeAssist.Now();
     this.mSocket  = new UdpClient(new IPEndPoint(IPAddress.Any, 0));
     this.StartRecv();
 }