public HTTPConnector(
         string host, 
         uint port, 
         TypeOfConnect type
     )
 {
     _host = host;
     _port = port;
     _type = type;
 }
 //Конструктор по умолчанию (для отладки)
 public HTTPConnector()
 {
     _host = "90.188.1.11";
     _port = 35555;
     _type = TypeOfConnect.Mobile;
 }
 public HTTPConnector(string host, uint port)
 {
     _host = host;
     _port = port;
     _type = TypeOfConnect.Mobile;
 }