Esempio n. 1
0
        public virtual bool Visit(ref RSValue ioValue)
        {
            if (ioValue.GetInnerType() == RSValue.InnerType.EntityScope)
            {
                EntityScopeData scope = ioValue.AsEntity;
                if (Visit(ref scope))
                {
                    ioValue = RSValue.FromEntity(scope);
                    return(true);
                }
            }

            return(false);
        }