auto input = new ZlibInput(myConduit.input)); input.read(myContent);
| InputStream stream | Compressed input stream. |
| Encoding encoding | Stream encoding. Defaults to Encoding.Guess, which should be sufficient unless the stream was compressed with no encoding; in this case, you must manually specify Encoding.None. |
| int windowBits | The base two logarithm of the window size, and should be in the range 8-15, defaulting to 15 if not specified. |
auto output = new ZlibOutput(myConduit.output); output.write(myContent);