 | FtpSendCommand(String, Boolean, Object) Method |
Executes command on the FTP server.
Namespace: Limilabs.FTP.ClientAssembly: Ftp (in Ftp.dll) Version: 2.0.26109.1248
Syntaxpublic 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 String
- Command (e.g. "HELP {0}").
- throwException Boolean
- If true throws FtpException on negative response.
- args Object
- Command arguments.
Return Value
FtpResponseFTP server response.
See Also