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

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

private GetChildItems ( string path, INodeFactory nodeFactory, bool recurse ) : void
path string
nodeFactory INodeFactory
recurse bool
Результат void
        void GetChildItems(string path, INodeFactory nodeFactory, bool recurse)
        {
            var context = CreateContext(path, recurse );
            var children = nodeFactory.GetNodeChildren(context);
            WriteChildItem(path, recurse, children);
        }

Same methods

Provider::GetChildItems ( string path, bool recurse ) : void