'Declaration Public Function New( _ ByVal events As FileSystemEvents, _ ByVal userData As Object, _ ByVal tarFile As AbstractFile _ )
'Usage Dim events As FileSystemEvents Dim userData As Object Dim tarFile As AbstractFile Dim instance As New TarArchive(events, userData, tarFile)
public TarArchive( FileSystemEvents events, object userData, AbstractFile tarFile )
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
- An Xceed.FileSystem.AbstractFile object that represents the TAR file to access. For example, to access/create a TAR file in memory use a Xceed.FileSystem.MemoryFile. If the TAR file is on disk, then use a Xceed.FileSystem.DiskFile and so on.