MarshalAll() public method

Marshals all nodes. Does nothing if has already been called.
public MarshalAll ( ) : void
return void
        public override bool MoveToId(string id)
        {
            _Gumbo.MarshalAll();

            var element = _Gumbo.GetElementById(id);

            if (element == null)
            {
                return(false);
            }

            _State.SetCurrent(element);
            return(true);
        }