Пример #1
0
 public NetConnection(string Host)
 {
     updator = new TokenUpdator(this);
     if (Host.Contains("http://"))
     {
         Address = Host;
     }
     else
     {
         Address = "http://" + Host;
     }
 }
Пример #2
0
 public NetConnection(string IP, int Port)
 {
     updator = new TokenUpdator(this);
     Address = "http://" + IP + ":" + Port;
 }