'Declaration Public Overrides Function ParseLine( _ ByVal line As String _ ) As FtpItemInfo
'Usage Dim instance As FtpVmsListingParser Dim line As String Dim value As FtpItemInfo value = instance.ParseLine(line)
public override FtpItemInfo ParseLine( string line )
Parameters
- line
- The listing line received from the FTP server.
Return Value
A reference to an FtpItemInfo object containing the information that was parsed from the listing line received from the FTP server. Can be FtpItemInfo.Empty to indicate that the line was recognized but more information is required (for example, VMS listings are on 2 lines). Can be a null reference (Nothing in Visual Basic) to indicate that the listing line was not recognized as a valid VMS listing line.