NServiceBus.Image.MoveTo C# (CSharp) Method

MoveTo() private method

private MoveTo ( uint position ) : bool
position uint
return bool
        bool MoveTo(uint position)
        {
            if (position >= stream.Length)
            {
                return false;
            }

            stream.Position = position;
            return true;
        }