'Declaration Public Function New( _ ByVal events As FileSystemEvents, _ ByVal userData As Object, _ ByVal tarFile As AbstractFile, _ ByVal fileName As String _ )
'Usage Dim events As FileSystemEvents Dim userData As Object Dim tarFile As AbstractFile Dim fileName As String Dim instance As New TarredFile(events, userData, tarFile, fileName)
public TarredFile( FileSystemEvents events, object userData, AbstractFile tarFile, string fileName )
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.
- fileName
- Fully-qualified name of the file stored within the TAR file. This file may or may not exist within the TAR file.