Xceed .NET Libraries Documentation
Xceed.GZip Assembly / Xceed.GZip Namespace / GZipArchive Class / GZipArchive Constructor / GZipArchive Constructor(AbstractFile)
An Xceed.FileSystem.AbstractFile object that represents the gzip file to access. For example, to access/create a gzip file in memory use a Xceed.FileSystem.MemoryFile. If the gzip file is on disk, then use a Xceed.FileSystem.DiskFile and so on.


In This Topic
    GZipArchive Constructor(AbstractFile)
    In This Topic
    Initializes a new instance of the GZipArchive class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal gzipFile As AbstractFile _
    )
    'Usage
     
    Dim gzipFile As AbstractFile
     
    Dim instance As New GZipArchive(gzipFile)
    public GZipArchive( 
       AbstractFile gzipFile
    )

    Parameters

    gzipFile
    An Xceed.FileSystem.AbstractFile object that represents the gzip file to access. For example, to access/create a gzip file in memory use a Xceed.FileSystem.MemoryFile. If the gzip file is on disk, then use a Xceed.FileSystem.DiskFile and so on.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also