| ImapSendCommandAsync Method (String) |
Sends command and waits for the server response.
Namespace:
Limilabs.Client.IMAP
Assembly:
Mail (in Mail.dll) Version: 3.0.23341.1754
Syntax public Task<ImapResponse> SendCommandAsync(
string command
)
Public Function SendCommandAsync (
command As String
) As Task(Of ImapResponse)
public:
Task<ImapResponse^>^ SendCommandAsync(
String^ command
)
member SendCommandAsync :
command : string -> Task<ImapResponse>
Parameters
- command
- Type: SystemString
Command e.g. "NOOP".
Return Value
Type:
TaskImapResponseIMAP response object.
Exceptions Remarks
Most commands have their own specialized methods in this class, you should probably use them instead.
See Also