Creates an IFtpFileParser instance.

Namespace: Jscape.Ftp
Assembly: Jscape.Ftp (in Jscape.Ftp.dll) Version: 2.4.5.0

Syntax

C#
public IFtpFileParser FtpFileParser { get; set; }
Visual Basic
Public Property FtpFileParser As IFtpFileParser
	Get
	Set
Visual C++
public:
property IFtpFileParser^ FtpFileParser {
	IFtpFileParser^ get ();
	void set (IFtpFileParser^ value);
}

Remarks

The IFtpFileParser is used to parse directory listing returned when invoking the GetDirListing(String) method. If IFtpFileParser is null upon establishing a connection the Ftp class will attempt to determine the proper IFtpFileParser based on information retrieved from the FTP server.
If the IFtpFileParser is null or cannot be determined, then by default an instance of UnixParser is used.
Upon disconnecting from FTP server the IFtpFileParser is reset to null.

See Also