AoMBrgEditor.PssgFile.FindNodes C# (CSharp) Метод

FindNodes() публичный Метод

public FindNodes ( string name, string attributeName = null, string attributeValue = null ) : List
name string
attributeName string
attributeValue string
Результат List
        public List<PssgNode> FindNodes(string name, string attributeName = null, string attributeValue = null)
        {
            if (rootNode == null)
            {
                return new List<PssgNode>();
            }
            return rootNode.FindNodes(name, attributeName, attributeValue);
        }