Exemplo n.º 1
0
 internal void AddRequest(string st, long id)
 {
     this._InterceptionMode = InterCeptionMode.request;
     foreach (String2 s2 in this.Reqs)
     {
         if (s2.id == id)
         {
             s2.value = RequestStatue.Wait;
             ReBuildListBox();
             return;
         }
     }
     this.Reqs.Add(new String2(st, id));
     ReBuildListBox();
     checkControls();
 }
Exemplo n.º 2
0
 internal void setCurrentInterceptedResponse(string resp)
 {
     this._interception_response = resp;
     this._InterceptionMode      = InterCeptionMode.response;
 }