ICSharpCode.SharpZipLib.Zip.Compression.Streams.InflaterInputStream.WriteByte C# (CSharp) Method

WriteByte() public method

Writes one byte to the current stream and advances the current position Always throws a NotSupportedException
Any access
public WriteByte ( byte value ) : void
value byte The byte to write.
return void
        public override void WriteByte(byte value)
        {
            throw new NotSupportedException("InflaterInputStream WriteByte not supported");
        }