Nevron .NET Vision
Nevron.Compression Namespace / NCompression Class / CopyStream Method


In This Topic
    CopyStream Method
    In This Topic
    Copies the given source stream to the specified destination stream and advances the Position in the destination stream to its end. If you want to read from the destination stream do not forget to set its Position property to the proper value.
    Syntax
    'Declaration
     
    
    Public Shared Sub CopyStream( _
       ByVal src As System.IO.Stream, _
       ByVal dest As System.IO.Stream _
    ) 
    'Usage
     
    
    Dim src As System.IO.Stream
    Dim dest As System.IO.Stream
     
    NCompression.CopyStream(src, dest)
    public static void CopyStream( 
       System.IO.Stream src,
       System.IO.Stream dest
    )

    Parameters

    src
    dest
    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