Exemple #1
0
 public IAsyncResult BeginStoreHeader(string filepath, AsyncCallback callback)
 {
     this._delegateStoreHeader = this.StoreHeader;
     return this._delegateStoreHeader.BeginInvoke(filepath, callback, this._delegateStoreHeader);
 }
Exemple #2
0
 public IAsyncResult BeginStoreHeader(int messageIndex, int numberOfBodyLines, string destinationPath,
                                      AsyncCallback callback)
 {
     this._delegateStoreHeader = this.StoreHeader;
     return this._delegateStoreHeader.BeginInvoke(messageIndex, destinationPath, callback, null);
 }
Exemple #3
0
 public IAsyncResult BeginStoreHeader(string filepath, AsyncCallback callback)
 {
     this._delegateStoreHeader = this.StoreHeader;
     return(this._delegateStoreHeader.BeginInvoke(filepath, callback, this._delegateStoreHeader));
 }