Apache.NMS.ActiveMQ.Commands.ActiveMQBytesMessage.LengthTrackerStream.WriteByte C# (CSharp) Method

WriteByte() public method

public WriteByte ( byte value ) : void
value byte
return void
            public override void WriteByte(byte value)
            {
                this.parent.length++;
                this.sink.WriteByte(value);
            }