System.Xml.XmlBoundElement.GetElementsByTagName C# (CSharp) Méthode

GetElementsByTagName() public méthode

public GetElementsByTagName ( string name ) : XmlNodeList
name string
Résultat XmlNodeList
        public override XmlNodeList GetElementsByTagName(string name)
        {
            // Retrieving nodes from the returned nodelist may cause foliation which causes new nodes to be created,
            // so the System.Xml iterator will throw if this happens during iteration. To avoid this, foliate everything
            // before iteration, so iteration will not cause foliation (and as a result of this, creation of new nodes).
            XmlNodeList tempNodeList = base.GetElementsByTagName(name);

            int tempint = tempNodeList.Count;
            return tempNodeList;
        }
    }