ServiceStack.Text.RecyclableMemoryStream.WriteByte C# (CSharp) Method

WriteByte() public method

Writes a single byte to the current position in the stream.
Object has been disposed
public WriteByte ( byte value ) : void
value byte byte value to write
return void
        public override void WriteByte(byte value)
        {
            this.CheckDisposed();
            this.byteBuffer[0] = value;
            this.Write(this.byteBuffer, 0, 1);
        }