Beispiel #1
0
 public KService(string host, int port)
 {
     this.TimeNow = (uint)TimeHelper.Now();
     this.socket  = new UdpClient(new IPEndPoint(IPAddress.Parse(host), port));
     this.StartRecv();
 }
Beispiel #2
0
 public KService()
 {
     this.TimeNow = (uint)TimeHelper.Now();
     this.socket  = new UdpClient(new IPEndPoint(IPAddress.Any, 0));
     this.StartRecv();
 }
Beispiel #3
0
 public KService(IPEndPoint ipEndPoint)
 {
     this.TimeNow = (uint)TimeHelper.Now();
     this.socket  = new UdpClient(ipEndPoint);
     this.StartRecv();
 }