Example #1
0
 public static void BeginGetListingExample() {
     // The using statement here is OK _only_ because m_reset.WaitOne()
     // causes the code to block until the async process finishes, otherwise
     // the connection object would be disposed early. In practice, you
     // typically would not wrap the following code with a using statement.
     using (FtpClient conn = new FtpClient()) {
         m_reset.Reset();
         
         conn.Host = "localhost";
         conn.Credentials = new NetworkCredential("ftptest", "ftptest");
         conn.Connect();
         conn.BeginGetListing(new AsyncCallback(GetListingCallback), conn);
         
         m_reset.WaitOne();
         conn.Disconnect();
     }
 }
Example #2
0
        public static void BeginGetListingExample()
        {
            // The using statement here is OK _only_ because m_reset.WaitOne()
            // causes the code to block until the async process finishes, otherwise
            // the connection object would be disposed early. In practice, you
            // typically would not wrap the following code with a using statement.
            using (FtpClient conn = new FtpClient()) {
                m_reset.Reset();

                conn.Host        = "localhost";
                conn.Credentials = new NetworkCredential("ftptest", "ftptest");
                conn.Connect();
                conn.BeginGetListing(new AsyncCallback(GetListingCallback), conn);

                m_reset.WaitOne();
                conn.Disconnect();
            }
        }