'Declaration Public Function New( _ ByVal events As FileSystemEvents, _ ByVal userData As Object, _ ByVal tarFile As AbstractFile, _ ByVal folderName As String _ )
'Usage Dim events As FileSystemEvents Dim userData As Object Dim tarFile As AbstractFile Dim folderName As String Dim instance As New TarredFolder(events, userData, tarFile, folderName)
public TarredFolder( FileSystemEvents events, object userData, AbstractFile tarFile, string folderName )
Parameters
- events
- A Xceed.FileSystem.FileSystemEvents object that will be used to raise events. Cannot be a null reference (Nothing in Visual Basic).
- userData
- Opaque data that will be passed back to the event handler when an event is raised.
- tarFile
- Xceed.FileSystem.AbstractFile object that represents the TAR file to access. Cannot be a null reference (Nothing in Visual Basic).
- folderName
- Fully-qualified name of the folder stored in the TAR file. This folder may or may not exist in the TAR file. Cannot be a null reference (Nothing in Visual Basic).