| FtpSendCommand Method (String, Boolean, Object) |
Executes command on the FTP server.
Namespace:
Limilabs.FTP.Client
Assembly:
Ftp (in Ftp.dll) Version: 2.0.22214.1022
Syntax public FtpResponse SendCommand(
string command,
bool throwException,
params Object[] args
)
Public Function SendCommand (
command As String,
throwException As Boolean,
ParamArray args As Object()
) As FtpResponse
public:
FtpResponse^ SendCommand(
String^ command,
bool throwException,
... array<Object^>^ args
)
member SendCommand :
command : string *
throwException : bool *
args : Object[] -> FtpResponse
Parameters
- command
- Type: SystemString
Command (e.g. "HELP {0}"). - throwException
- Type: SystemBoolean
If true throws FtpException on negative response. - args
- Type: SystemObject
Command arguments.
Return Value
Type:
FtpResponseFTP server response.
See Also