Boo.BooLangProject.HierarchyListener.CanRecurseInto C# (CSharp) Метод

CanRecurseInto() приватный Метод

Determines whether an item's children can be recursed into.
private CanRecurseInto ( uint item ) : bool
item uint Item whose children are to be recursed.
Результат bool
        private bool CanRecurseInto(uint item)
        {
            object propertyValue;
            int result = hierarchy.GetProperty(item, HasEnumerationSideEffects, out propertyValue);

            if (result == Ok && propertyValue is bool)
                return !(bool)propertyValue;

            return true;
        }