Sends command which expects to receive multi-line response e.g. "RETR".

Namespace: Lesnikowski.Client
Assembly: Mail (in Mail.dll) Version: 3.0.1213.909

Syntax

C#
public Pop3MultiLineResponse SendMultiLineCommand(
	string command
)
Visual Basic
Public Function SendMultiLineCommand ( _
	command As String _
) As Pop3MultiLineResponse
Visual C++
public:
Pop3MultiLineResponse^ SendMultiLineCommand(
	String^ command
)

Parameters

command
Type: System..::..String
Command to send e.g. "RETR".

Return Value

Multi-line response object.

Remarks

Some commands have their own specialized methods in this class, you should probably use them instead. This is equal to 'SendMultiLineCommand(command, true);'.

Exceptions

ExceptionCondition
Lesnikowski.Client..::..ServerException -ERR response.

See Also