Pop3.ReadResponse Method
Namespace: Rebex.Net
Assembly: Rebex.Pop3.dll (version 7.0.9083)
ReadResponse()
Returns a single line of response of the POP3 server to the command.
Declaration
public string ReadResponse()
Returns
Type | Description |
---|---|
String | Response of the POP3 server. |
Remarks
Use ReadResponse and SendCommand to implement various custom commands.
If the response is multiline, ReadResponse must be called multiple times until it returns null, which indicates an and of response.
If the response is single line, ReadResponse must be called only once.