Xceed .NET Libraries Documentation
Xceed.Ftp Assembly / Xceed.Ftp Namespace / ListingMethod Enumeration


In This Topic
    ListingMethod Enumeration
    In This Topic
    Value representing the method by which folder content (file names, size, dates, etc) is retrieved from the FTP server.
    Syntax
    'Declaration
     
    Public Enum ListingMethod 
       Inherits System.Enum
       Implements System.IComparableSystem.IConvertibleSystem.IFormattable 
    'Usage
     
    Dim instance As ListingMethod
    Members
    MemberValueDescription
    Automatic2Use MachineFormat if supported by the server. Use standard method otherwise.
    MachineFormat1An extended FTP feature (MLSD) that uses a machine-readable format to get folder content, resulting in a more accurate listing (RFC 3659).
    Standard0The legacy way of getting folder content using the LIST command.
    Remarks
    Not every FTP server supports MachineFormat. Support is determined automatically using the FEAT command.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             Xceed.Ftp.ListingMethod

    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