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

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

protected ItemExists ( string path ) : bool
path string
Результат bool
        protected override bool ItemExists(string path)
        {
            if (IsRootPath(path))
            {
                return true;
            }

            return null != GetNodeFactoryFromPath(path);
        }