NServiceBus.Image.ReadUInt16 C# (CSharp) Method

ReadUInt16() private method

private ReadUInt16 ( ) : ushort
return ushort
        ushort ReadUInt16()
        {
            return (ushort) (stream.ReadByte()
                             | (stream.ReadByte() << 8));
        }