NServiceBus.Image.ReadUInt32 C# (CSharp) Method

ReadUInt32() private method

private ReadUInt32 ( ) : uint
return uint
        uint ReadUInt32()
        {
            return (uint) (stream.ReadByte()
                           | (stream.ReadByte() << 8)
                           | (stream.ReadByte() << 16)
                           | (stream.ReadByte() << 24));
        }