Returns the corresponding response of the POP3 server to the command that was sent using the
SendCommand method.
public string ReadResponse()
Public Function ReadResponse As String
public:
String ReadResponse();
Return Value
Response of the POP3 server.
Remarks
ReadResponse should be called once if the response is a single line; otherwise it must be called multiple times.
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();
Imports ComponentPro.Net
Imports ComponentPro.Net.Mail
...
' POP3 server information.
Const serverName As String = "myserver"
Const user As String = "name@domain.com"
Const password As String = "mytestpassword"
Const port As Integer = 995
Const securityMode As SslSecurityMode = SslSecurityMode.Implicit
' Create a new instance of the Pop3 class.
Dim client As 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.
Dim response As String = client.ReadResponse()
' Print out the response.
Console.WriteLine(response)
' Close the connection.
client.Disconnect()