Appccelerate.IO.Streams.StreamDecoratorStream.WriteByte C# (CSharp) Method

WriteByte() public method

Writes a byte to the current position in the stream and advances the position within the stream by one byte.
An I/O error occurs. Methods were called after the stream was closed. The stream does not support writing, or the stream is already /// closed.
public WriteByte ( byte value ) : void
value byte The byte to write to the stream.
return void
        public override void WriteByte(byte value)
        {
            this.AssertStreamNotNull();
            this.decoratedStream.WriteByte(value);
        }