public event AsyncCompletedEventHandler SetLastWriteTimeCompleted
async
and await
modifiers for asynchronous operations.Shows how to use SetLastWriteTimeAsync method to set modification time of a file (Task-based approach).
using System; using ComponentPro.IO; using ComponentPro.Net; using ComponentPro; ... // Create a new class instance. Ftp client = new Ftp(); // Connect to the FTP server. client.Connect("myserver"); // Authenticate. client.Authenticate("userName", "password"); // ... // Set modification date and time of the remote file. await client.SetLastWriteTimeAsync("/file.dat", DateTime.Now); // ... // Disconnect. client.Disconnect();
Shows how to use SetLastWriteTimeAsync method to set modification time of a file (Event-based approach).
using System; using System.ComponentModel; using ComponentPro.Net; ... static void Main() { // Create a new class instance. Ftp client = new Ftp(); // Connect to the FTP server. client.Connect("myserver"); // Authenticate. client.Authenticate("userName", "password"); // ... // Register an event handler. client.SetLastWriteTimeCompleted += client_SetLastWriteTimeCompleted; // Set modification date and time of the remote file. client.SetLastWriteTimeAsync("/file.dat", DateTime.Now); // ... // Disconnect. client.Disconnect(); } static void client_SetLastWriteTimeCompleted(object sender, AsyncCompletedEventArgs e) { // Ftp client = (Ftp)sender; if (e.Error != null) Console.WriteLine("Error: " + e.Error.ToString()); }
Shows how to use SetLastWriteTimeAsync method to set modification time of a file (Task-based approach).
using System; using ComponentPro.IO; using ComponentPro.Net; using ComponentPro; ... // Create a new class instance. Sftp client = new Sftp(); // Connect to the SFTP server. client.Connect("myserver"); // Authenticate. client.Authenticate("userName", "password"); // ... // Set modification date and time of the remote file. await client.SetLastWriteTimeAsync("/file.dat", DateTime.Now); // ... // Disconnect. client.Disconnect();
Shows how to use SetLastWriteTimeAsync method to set modification time of a file (Event-based approach).
using System; using System.ComponentModel; using ComponentPro.Net; ... static void Main() { // Create a new class instance. Sftp client = new Sftp(); // Connect to the SFTP server. client.Connect("myserver"); // Authenticate. client.Authenticate("userName", "password"); // ... // Register an event handler. client.SetLastWriteTimeCompleted += client_SetLastWriteTimeCompleted; // Set modification date and time of the remote file. client.SetLastWriteTimeAsync("/file.dat", DateTime.Now); // ... // Disconnect. client.Disconnect(); } static void client_SetLastWriteTimeCompleted(object sender, AsyncCompletedEventArgs e) { // Sftp client = (Sftp)sender; if (e.Error != null) Console.WriteLine("Error: " + e.Error.ToString()); }