public override FTPReply InvokeFTPCommand(
string command,
params string[] validCodes
)Public Overrides Function InvokeFTPCommand (
command As String,
ParamArray validCodes As String()
) As FTPReplypublic:
virtual FTPReply^ InvokeFTPCommand(
String^ command,
... array<String^>^ validCodes
) overrideabstract InvokeFTPCommand :
command : string *
validCodes : string[] -> FTPReply
override InvokeFTPCommand :
command : string *
validCodes : string[] -> FTPReply If a particular FTP command is not supported by FTPConnection, this method may sometimes be used to invoke the command. This will only work for simple commands that don't require special processing.
An example of an FTP command that could be invoked using this method is the FEAT command (which is actually behind the GetFeatures method. This would be done as follows:
string features = ftpConnection.InvokeFTPCommand("FEAT", "211");
The returned string could then be parsed to obtain the supported features
of the server.