public void SendCommand( string command, bool multiline )
Shows how to connect to a POP3 server and send a command and read the response from the server.
using System; using ComponentPro.Net; using ComponentPro.Net.Mail; ... // POP3 server information. const string serverName = "myserver"; const string user = "name@domain.com"; const string password = "mytestpassword"; const int port = 995; const SslSecurityMode securityMode = SslSecurityMode.Implicit; // Create a new instance of the Pop3 class. Pop3 client = new Pop3(); // Connect to the server. client.Connect(serverName, port, securityMode); // Login to the server. client.Authenticate(user, password); // Send a command. client.SendCommand("HELP", false); // Read response from the server. string response = client.ReadResponse(); // Print out the response. Console.WriteLine(response); // Close the connection. client.Disconnect();