FtpClient.GetFeatures Method
From System.Net.FtpClient
Populates the capabilities flags based on capabilities
supported by this server. This method is overridable
so that new features can be supported
Namespace: System.Net.FtpClient
Assembly: System.Net.FtpClient (in System.Net.FtpClient.dll) Version: 1.0.5064.17461
Syntax
| C# |
|---|
protected virtual void GetFeatures( FtpReply reply ) |
| Visual Basic |
|---|
Protected Overridable Sub GetFeatures ( reply As FtpReply ) |
| Visual C++ |
|---|
protected: virtual void GetFeatures( FtpReply reply ) |
Parameters
- reply
- Type: System.Net.FtpClient..::..FtpReply
The reply object from the FEAT command. The InfoMessages property will contain a list of the features the server supported delimited by a new line '\n' character.
See Also