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

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

private GetChildNames ( string path, INodeFactory nodeFactory, ReturnContainers returnContainers ) : void
path string
nodeFactory INodeFactory
returnContainers ReturnContainers
Результат void
        void GetChildNames( string path, INodeFactory nodeFactory, ReturnContainers returnContainers )
        {
            nodeFactory.GetNodeChildren(CreateContext(path)).ToList().ForEach(
                f =>
                    {
                        var i = f.GetNodeValue();
                        if (null == i)
                        {
                            return;
                        }
                        WriteItemObject(i.Name, path + "\\" + i.Name, i.IsCollection);
                    });
        }

Same methods

Provider::GetChildNames ( string path, ReturnContainers returnContainers ) : void