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.IComparable, System.IConvertible, System.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

    Supported Frameworks
    MachineFormat
    See Also