Nevron .NET Vision
Nevron.Compression Namespace / DeflaterOutputStream Class / DeflaterOutputStream Constructor / DeflaterOutputStream Constructor(Stream,Deflater)
the output stream where deflated output should be written.
the underlying deflater.


In This Topic
    DeflaterOutputStream Constructor(Stream,Deflater)
    In This Topic
    Creates a new DeflaterOutputStream with the given Deflater and default buffer size.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal baseOutputStream As System.IO.Stream, _
       ByVal deflater As Deflater _
    )
    'Usage
     
    
    Dim baseOutputStream As System.IO.Stream
    Dim deflater As Deflater
     
    Dim instance As New DeflaterOutputStream(baseOutputStream, deflater)
    public DeflaterOutputStream( 
       System.IO.Stream baseOutputStream,
       Deflater deflater
    )

    Parameters

    baseOutputStream
    the output stream where deflated output should be written.
    deflater
    the underlying deflater.
    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