Пример #1
0
 public void destory()
 {
     help.destory();
     help = null;
     if (suc != null)
     {
         suc = null;
     }
     if (fail != null)
     {
         fail = null;
     }
 }
Пример #2
0
 public HttpUtils(SucDelegate s, FailDelegate f)
 {
     help = new HttpHelper();
     suc  = s;
     fail = f;
 }