示例#1
0
 /// <summary>
 /// Signals that the request has started
 /// </summary>
 virtual public void __Start()
 {
     _BytesDownloaded = 0;
     _Errors          = 0;
     SetStatus(StatusFlags.Downloading);
     ResponseCode = -1;
     if (OnDownloadStarted != null)
     {
         OnDownloadStarted(this);
     }
 }
示例#2
0
 public void SetError(ManifestErrors error)
 {
     _Errors |= error;
 }