Ejemplo n.º 1
0
 /// <summary>
 /// Создаёт экземпляр класса.
 /// </summary>
 /// <param name="env">Ссылка на среду окружения</param>
 public CAjaxMng(IEnvironment env) {
   this.Env = env;
   this._queue = new Queue<BioRequest>();
   this._ajax = new CAjaxCli(env.AppVersion, env.UserAgentName, env.AppTitle);
   this._loginPrc = new CAjaxLogin(this, _doOnLogLine);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Создаёт экземпляр класса.
 /// </summary>
 public AjaxMng() {
   this._queue = new Queue<BioRequest>();
   this._ajax = new CAjaxCli(BioEnvironment.Instance.AppVersion, BioEnvironment.Instance.UserAgentName, BioEnvironment.Instance.AppTitle);
   this._loginPrc = new CAjaxLogin(this);
 }