Esempio n. 1
0
 public System.IAsyncResult BeginGetFileList(  System.AsyncCallback callback )
 {
     GetFileListCallback ftpCallback = new GetFileListCallback( this.GetFileList);
     return ftpCallback.BeginInvoke(callback, null);
 }
Esempio n. 2
0
        public System.IAsyncResult BeginGetFileList(System.AsyncCallback callback)
        {
            GetFileListCallback ftpCallback = new GetFileListCallback(this.GetFileList);

            return(ftpCallback.BeginInvoke(callback, null));
        }
Esempio n. 3
0
        /// <summary>
        /// Begins the get file list.
        /// </summary>
        /// <param name="callback">The callback.</param>
        /// <returns></returns>
        public IAsyncResult BeginGetFileList(AsyncCallback callback)
        {
            GetFileListCallback ftpCallback = GetFileList;

            return(ftpCallback.BeginInvoke(callback, null));
        }