| Pop3SendMultiLineCommandAsync Method (String) |
Sends command, which expects to receive multi-line response, to POP3 server (e.g. "RETR").
Namespace:
Limilabs.Client.POP3
Assembly:
Mail (in Mail.dll) Version: 3.0.23341.1754
Syntax public Task<Pop3Response> SendMultiLineCommandAsync(
string command
)
Public Function SendMultiLineCommandAsync (
command As String
) As Task(Of Pop3Response)
public:
Task<Pop3Response^>^ SendMultiLineCommandAsync(
String^ command
)
member SendMultiLineCommandAsync :
command : string -> Task<Pop3Response>
Parameters
- command
- Type: SystemString
Command to send e.g. "RETR".
Return Value
Type:
TaskPop3ResponseMulti-line response object.
Exceptions Remarks
Some commands have their own specialized methods in this class, you should probably use them instead.
See Also