System.IO.Compression.InputBuffer.SetInput C# (CSharp) Method

SetInput() public method

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

Usage Example

Ejemplo n.º 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