Pop3.SendCommand Method
Namespace: Rebex.Net
Assembly: Rebex.Pop3.dll (version 7.0.9083)
SendCommand(String, Boolean)
Sends a custom command to the POP3 server.
Declaration
public void SendCommand(string command, bool multiline)
Parameters
Type | Name | Description |
---|---|---|
String | command | Command (e.g. "HELP"). |
Boolean | multiline | Indicates whether the response for the command is multiline or single line. |
Remarks
Must be followed by either one or more calls to ReadResponse method, depending on the value of multiline parameter.
Use ReadResponse and SendCommand to implement various custom commands.