public NetConnection(string Host) { updator = new TokenUpdator(this); if (Host.Contains("http://")) { Address = Host; } else { Address = "http://" + Host; } }
public NetConnection(string IP, int Port) { updator = new TokenUpdator(this); Address = "http://" + IP + ":" + Port; }