Gets or sets the server proxy, if any, used to connect to the remote IMAP server.

      Syntax

      public WebProxyEx Proxy { get; set; }

      Value

      The server proxy, if any, used to connect to the remote IMAP server.

      Examples

      Connect to an SMTP server through a proxy server.

      using System;
      using ComponentPro.Net;
      using ComponentPro.Net.Mail;
      
      ...
      
      // Create a new instance.
      Imap client = new Imap();
      
      // Create a new proxy object.
      WebProxyEx proxy = new WebProxyEx();
      proxy.Server = "proxyserver"; // Set proxy address here.
      proxy.Port = 1080; // Set proxy port here.
      proxy.UserName = "username"; // Proxy user name.
      proxy.Password = "password"; // Password.
      
      client.Proxy = proxy;
      
      // Connect to the IMAP server.
      client.Connect("myserver");
      
      // Authenticate.
      client.Authenticate("userName", "password");
      
      // Do something here... 
      // ... 
       
      // Select INBOX mailbox.
      client.Select("INBOX");
      // Print out unique id of all messages. 
      foreach (ImapMessage msg in client.ListMessages(ImapEnvelopeParts.UniqueId))
      {
          Console.WriteLine(msg.UniqueId);
      }
      
      // Disconnect.
      client.Disconnect();

      Framework

      .NET Compact Framework.NET Compact Framework

      Supported version: 2.0, 3.5, and 3.9
      Assembly: ComponentPro.Mail.CF (in ComponentPro.Mail.CF.dll)

      .NET Framework.NET Framework

      Supported version: 2.0, 3.0, 3.5, 4.0, 4.5.x, 4.6.x and later
      Assembly: ComponentPro.Mail (in ComponentPro.Mail.dll)

      Xamarin AndroidXamarin Android

      Supported version: 2.3 and later
      Assembly: ComponentPro.Mail.Android (in ComponentPro.Mail.Android.dll)

      Xamarin MacXamarin Mac

      Supported version: 2.0.x and later
      Assembly: ComponentPro.Mail.Mac (in ComponentPro.Mail.Mac.dll)

      Xamarin iOSXamarin iOS

      Supported version: 5.1.x and later
      Assembly: ComponentPro.Mail.iOS (in ComponentPro.Mail.iOS.dll)

      See Also