NET FTP Library
LastFtpCommand Property
Example 






KellermanSoftware.NetFtpLibrary Namespace > FTP Class : LastFtpCommand Property
Return the last FTP Command Attempted.
Syntax
'Declaration
 
Public Overridable ReadOnly Property LastFtpCommand As FtpCommand
'Usage
 
Dim instance As FTP
Dim value As FtpCommand
 
value = instance.LastFtpCommand
public virtual FtpCommand LastFtpCommand {get;}
public read-only property LastFtpCommand: FtpCommand; virtual; 
public function get LastFtpCommand : FtpCommand
public: __property virtual FtpCommand* get_LastFtpCommand();
public:
virtual property FtpCommand^ LastFtpCommand {
   FtpCommand^ get();
}
Example
FTP ftp = new FTP(); //Trial Mode            
//FTP ftp = new FTP("place user name here", "place license key here");
 
// set the name of the FTP server( its URL )
ftp.HostAddress = "ftp.fsz.bme.hu"; // a hungarian university. change this to your ftp server
ftp.UserName = "anonymous"; // replace with your user name
ftp.Password = "user@mail.com"; // replace with your password
 
ftp.CreateDirectory("test");
FtpCommand cmd = _ftp.LastFtpCommand;
System.Console.WriteLine("Last Command: {0}, Parameters: {1}", cmd.Command, cmd.Param);
Dim ftp As FTP = New FTP() 'Trial Mode
'FTP ftp = new FTP("place user name here", "place license key here");
 
' set the name of the FTP server( its URL )
ftp.HostAddress = "ftp.fsz.bme.hu" ' a hungarian university. change this to your ftp server
ftp.UserName = "anonymous" ' replace with your user name
ftp.Password = "user@mail.com" ' replace with your password
 
ftp.CreateDirectory("test")
Dim cmd As FtpCommand = _ftp.LastFtpCommand
System.Console.WriteLine("Last Command: {0}, Parameters: {1}", cmd.Command, cmd.Param)
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

FTP Class
FTP Members