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

            return(ftpCallback.BeginInvoke(callback, null));
        }
Exemplo 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));
        }