System.IO.Compression.InputBuffer.SetInput C# (CSharp) Méthode

SetInput() public méthode

public SetInput ( byte buffer, int offset, int length ) : void
buffer byte
offset int
length int
Résultat void
        public void SetInput(byte[] buffer, int offset, int length) {
            this.buffer = buffer;
            this.start = offset;
            this.end = offset + length;
        }

Usage Example

Exemple #1
0
 public void SetInput(byte[] inputBytes, int offset, int length)
 {
     input.SetInput(inputBytes, offset, length);    // append the bytes
 }
All Usage Examples Of System.IO.Compression.InputBuffer::SetInput