Condividi tramite


Compressor Costruttori

Definizione

Overload

Compressor(IOutputStream)

Crea un'istanza di un compressore.

Compressor(IOutputStream, CompressAlgorithm, UInt32)

Crea un'istanza di un compressore.

Compressor(IOutputStream)

Crea un'istanza di un compressore.

public:
 Compressor(IOutputStream ^ underlyingStream);
 Compressor(IOutputStream const& underlyingStream);
public Compressor(IOutputStream underlyingStream);
function Compressor(underlyingStream)
Public Sub New (underlyingStream As IOutputStream)

Parametri

underlyingStream
IOutputStream

Flusso di informazioni compresse da scrivere dal compressore.

Vedi anche

Si applica a

Compressor(IOutputStream, CompressAlgorithm, UInt32)

Crea un'istanza di un compressore.

public:
 Compressor(IOutputStream ^ underlyingStream, CompressAlgorithm algorithm, unsigned int blockSize);
 Compressor(IOutputStream const& underlyingStream, CompressAlgorithm const& algorithm, uint32_t const& blockSize);
public Compressor(IOutputStream underlyingStream, CompressAlgorithm algorithm, uint blockSize);
function Compressor(underlyingStream, algorithm, blockSize)
Public Sub New (underlyingStream As IOutputStream, algorithm As CompressAlgorithm, blockSize As UInteger)

Parametri

underlyingStream
IOutputStream

Flusso di informazioni compresse da scrivere dal compressore.

algorithm
CompressAlgorithm

Algoritmo di compressione usato dal compressore per scrivere sottostanteStream.

blockSize
UInt32

unsigned int

uint32_t

Dimensioni in byte del buffer intermedio usato dall'algoritmo di compressione. Un valore pari a 0 specifica che l'algoritmo di compressione userà le dimensioni predefinite del blocco. I valori non zero validi per questo parametro sono da 32 Kb a 64 Mb.

Vedi anche

Si applica a