Searched refs:byteReadBufferSize (Results 1 – 2 of 2) sorted by relevance
63 public BrotliInputStream(System.IO.Stream source, int byteReadBufferSize) in BrotliInputStream() argument64 : this(source, byteReadBufferSize, null) in BrotliInputStream()89 public BrotliInputStream(System.IO.Stream source, int byteReadBufferSize, byte[] customDictionary) in BrotliInputStream() argument91 if (byteReadBufferSize <= 0) in BrotliInputStream()93 throw new System.ArgumentException("Bad buffer size:" + byteReadBufferSize); in BrotliInputStream()99 this.buffer = new byte[byteReadBufferSize]; in BrotliInputStream()
71 public BrotliInputStream(InputStream source, int byteReadBufferSize) throws IOException { in BrotliInputStream() argument72 if (byteReadBufferSize <= 0) { in BrotliInputStream()73 throw new IllegalArgumentException("Bad buffer size:" + byteReadBufferSize); in BrotliInputStream()77 this.buffer = new byte[byteReadBufferSize]; in BrotliInputStream()