public WarlockClient(IPAddress address, ushort port)
 {
     client = new Client();
     client.ConnectAsync(address, port).ContinueWith((t) => this.StartReceiving()); ;
 }