Example #1
0
        public static void BeginFileExists() {
            // 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.BeginFileExists("foobar", new AsyncCallback(BeginFileExistsCallback), conn);

                m_reset.WaitOne();
                conn.Disconnect();
            }
        }
Example #2
0
        public static void BeginFileExists()
        {
            // 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 (var conn = new FtpClient()) {
                m_reset.Reset();

                conn.Host        = "localhost";
                conn.Credentials = new NetworkCredential("ftptest", "ftptest");
                conn.Connect();
                conn.BeginFileExists("foobar", BeginFileExistsCallback, conn);

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