Initializes a new instance of the FtpItemParseEventArgs class with the specified raw data and a parsed item.

Namespace:  Rebex.Net
Assembly:  Rebex.Ftp (in Rebex.Ftp.dll)

Syntax

Visual Basic
Public Sub New ( _
	rawLine As String, _
	item As FtpItem _
)
C#
public FtpItemParseEventArgs(
	string rawLine,
	FtpItem item
)

Parameters

rawLine
Type: System..::..String
Raw data of the line parsed.
item
Type: Rebex.Net..::..FtpItem
Parsed FtpItem or null reference if unable to parse.

Remarks

This provides support for custom list parsing. Custom parser delegate can inspect the rawLine parameter and set Item property to a new FtpItem instance.

Version Information

.NET Compact Framework

Supported in: 3.9, 3.5

See Also