Dart.Ftp Namespace : ListingFormat Enumeration |
Public Enum ListingFormat Inherits System.Enum
Dim instance As ListingFormat
public enum ListingFormat : System.Enum
public enum class ListingFormat : public System.Enum
Member | Description |
---|---|
DOS | The perceived listing format is DOS. Microsoft's server can be configured to provide a DOS-formatted listing. |
Machine | The listing format is machine-readable. Utilized when the MLST or MLSD extended FTP commands are used. |
Names | The listing format is name only. Only ListEntry.Name is used. |
UNIX | The perceived listing format is UNIX. UNIX is used by most UNIX-based operating systems. |
Unknown | Listing format cannot be determined. If the listing format cannot be determined, you can parse the Listing.Text property. |
This enumeration is used by Listing.Format.
Automatic detection of the listing format (UNIX or DOS) is attempted. If the listing type is unable to be discerned, this property will be ListingFormat.Unknown. The raw listing can be accessed through Listing.Text (for the entire listing) or ListEntry.Text (for a single ListEntry).
System.Object
System.ValueType
System.Enum
Dart.Ftp.ListingFormat