ComponentPro UltimateMail

      Copying a message Asynchronously

      Language Filter: AllSend comments on this topic to ComponentPro

      Use CopyMessageAsync methods to asynchronously copy a selected message to another folder. These methods asynchronously a selected message to another folder with execution occurring on a new thread, therefore they allow your next line of code to execute immediately.

      In Task-based Asynchronous programs, the single asynchronous method represents the initiation and completion of an asynchronous operation. You may create the continuation code either explicitly, through methods on the Task class (for example, ContinueWith) or implicitly, by using language support built on top of continuations (for example, await in C#, Await in Visual Basic).

      In .NET 4.5 it is recommended to implement the Task-based Asynchronous Pattern.

      In Event-based Asynchronous programs, the event CopyMessageCompleted is raised when the CopyMessageAsync completes. In the event handler method of the CopyMessageCompleted, you can check if there were any errors by using the Error property of the event data object.

      The following example demonstrates how to asynchronously copy a selected message:

      Task-based approach

      using System;
      using ComponentPro.Net.Mail;
      
      ...
      
      // Create a new instance of the Imap class.
      Imap client = new Imap();
      
      // Connect to the server.
      client.Connect("myserver");
      
      // Or you can specify the IMAP port with 
      // client.Connect("myserver", 143); 
       
      // Login to the server.
      client.Authenticate("user", "password");
      
      // ... 
       
      // Select 'INBOX' mailbox.
      client.Select("INBOX");
      
      // Copy a mail message with sequence number 1 to folder 'my box'. 
      await client.CopyMessageAsync(1, "my box");
      
      // ...
      
      Console.WriteLine("Message copied successfully.");
      
      // Disconnect.
      client.Disconnect();
      

      Event-based approach

      using System;
      using System.ComponentModel;
      using ComponentPro;
      using ComponentPro.Net.Mail;
      
      ...
      
      public void DoCopyMessageAsync()
      {
          // Create a new instance of the Imap class. 
          Imap client = new Imap();
      
          // Connect to the server. 
          client.Connect("myserver");
      
          // Or you can specify the IMAP port with 
          // client.Connect("myserver", 143); 
       
          // Login to the server. 
          client.Authenticate("user", "password");
      
          // ... 
       
          // Register an event handler. 
          client.CopyMessageCompleted += client_CopyMessageCompleted;
      
          // Select 'INBOX' mailbox. 
          client.Select("INBOX");
      
          // Copy a mail message with sequence number 1 to folder 'my box'. 
          client.CopyMessageAsync(1, "my box");
      
          // ... 
       
          // Copy a mail message with unique id "7x89Caz" to folder 'my box'. 
          client.CopyMessageAsync("7x89Caz", "my box");
      
          // ... 
       
          // Disconnect. 
          client.Disconnect();
      }
      
      void client_CopyMessageCompleted(object sender, ExtendedAsyncCompletedEventArgs<ImapCopyMessageReference> e)
      {
          // Imap client = (Imap)sender; 
          if (e.Error != null)
              Console.WriteLine("Error: " + e.Error.ToString());
          else 
          {
              Console.WriteLine("Message copied successfully.");
          }
      }