edtFTPnet/PRO - Secure FTP component for .NET | Free Trial | Pricing
Determines if the component will automatically send the FEAT command.

Namespace: EnterpriseDT.Net.Ftp
Assembly: edtFTPnetPRO (in edtFTPnetPRO.dll) Version: 9.4.0.40

Syntax

C#
public bool AutoFeatures { get; set; }
Visual Basic
Public Property AutoFeatures As Boolean
	Get
	Set
Visual C++
public:
property bool AutoFeatures {
	bool get ();
	void set (bool value);
}

Remarks

If this flag if true then the component will automatically send the FEAT command after logging in when the Connect()()()() method is called. This is used to detect if UTF-8 is supported, amongst other things.

If the flag is false (the default) then the component will not send the FEAT command after logging in.

The default has been changed to false because on some FTP servers, calling FEAT affects the state of the server - there are problems creating passive sockets for listings and transfers.

See Also