Exemple #1
0
 internal DownLoadState(string RequestURL, WebResponse response, string FileName, int Position, int Length, ThreadCallbackHandler tch)
 {
     this._RequestURL = RequestURL;
     this.response = response;
     this._FileName = FileName;
     this._Offset = Position;
     this._Length = Length;
     this._ThreadCallback = tch;
 }
Exemple #2
0
 internal DownLoadState(string RequestURL, string ResponseURL, string FileName, string AttachmentName, int Position, int Length, ThreadCallbackHandler tch)
 {
     this._RequestURL     = RequestURL;
     this._ResponseURL    = ResponseURL;
     this._FileName       = FileName;
     this._AttachmentName = AttachmentName;
     this._Position       = Position;
     this._Length         = Length;
     this._ThreadCallback = tch;
 }
Exemple #3
0
		internal DownLoadState(string RequestURL, string ResponseURL, string FileName, string AttachmentName, int Position, int Length, ThreadCallbackHandler tch)
		{
			this._RequestURL = RequestURL;
			this._ResponseURL = ResponseURL;
			this._FileName = FileName;
			this._AttachmentName = AttachmentName;
			this._Position = Position;
			this._Length = Length;
			this._ThreadCallback = tch;
		}