CodeOwls.PowerShell.Provider.Provider.HasChildItems C# (CSharp) Метод

HasChildItems() защищенный Метод

protected HasChildItems ( string path ) : bool
path string
Результат bool
        protected override bool HasChildItems(string path)
        {
            var factory = GetFirstNodeFactoryFromPath(path);
            if (null == factory)
            {
                return false;
            }
            var nodes = factory.GetNodeChildren(CreateContext(path));
            if (null == nodes)
            {
                return false;
            }
            return nodes.Any();
        }