Nevron .NET Vision
Nevron.Compression Namespace / InflaterInputStream Class / InflaterInputStream Constructor / InflaterInputStream Constructor(Stream,Inflater,Int32)
The InputStream to read bytes from
The decompressor to use
Size of the buffer to use


In This Topic
    InflaterInputStream Constructor(Stream,Inflater,Int32)
    In This Topic
    Create an InflaterInputStream with the specified decompressor and the specified buffer size.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal baseInputStream As System.IO.Stream, _
       ByVal inflater As Inflater, _
       ByVal bufferSize As System.Integer _
    )
    'Usage
     
    
    Dim baseInputStream As System.IO.Stream
    Dim inflater As Inflater
    Dim bufferSize As System.Integer
     
    Dim instance As New InflaterInputStream(baseInputStream, inflater, bufferSize)
    public InflaterInputStream( 
       System.IO.Stream baseInputStream,
       Inflater inflater,
       System.int bufferSize
    )

    Parameters

    baseInputStream
    The InputStream to read bytes from
    inflater
    The decompressor to use
    bufferSize
    Size of the buffer to use
    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