| FtpSendCommandAsync Method (String, Object) |
Executes command on the FTP server.
Namespace:
Limilabs.FTP.Client
Assembly:
Ftp (in Ftp.dll) Version: 2.0.22214.1022
Syntax public Task<FtpResponse> SendCommandAsync(
string command,
params Object[] args
)
Public Function SendCommandAsync (
command As String,
ParamArray args As Object()
) As Task(Of FtpResponse)
public:
Task<FtpResponse^>^ SendCommandAsync(
String^ command,
... array<Object^>^ args
)
member SendCommandAsync :
command : string *
args : Object[] -> Task<FtpResponse>
Parameters
- command
- Type: SystemString
Command (e.g. "HELP {0}"). - args
- Type: SystemObject
Command arguments.
Return Value
Type:
TaskFtpResponseFTP server response.
See Also