 | Pop3SendMultiLineCommand(String, Boolean) Method |
Sends command, which expects to receive multi-line response, to POP3 server (e.g. "RETR").
Namespace: Limilabs.Client.POP3Assembly: Mail (in Mail.dll) Version: 3.0.26106.1555
Syntaxpublic Pop3Response SendMultiLineCommand(
string command,
bool throwException
)
Public Function SendMultiLineCommand (
command As String,
throwException As Boolean
) As Pop3Response
public:
Pop3Response^ SendMultiLineCommand(
String^ command,
bool throwException
)
member SendMultiLineCommand :
command : string *
throwException : bool -> Pop3Response Parameters
- command String
- Command to send e.g. "RETR".
- throwException Boolean
- If true throws Pop3ResponseException on error response
Return Value
Pop3ResponseMulti-line response object.
Remarks
Most commands have their own specialized methods in this class, you should probably use them instead.
See Also