Next() public method

public Next ( ) : bool
return bool
        protected void GetElementList()
        {
            bool exitFlag = false;

            while (!exitFlag && _xmlImp.Next())
            {
                if (_xmlImp.node is BlockCloseNode)
                {
                    exitFlag = true;
                    continue;
                }
            }
        }
        protected void GetElementList()
        {
            bool exitFlag = false;

            while (!exitFlag && _xmlImp.Next())
            {
                if (_xmlImp.node is BlockCloseNode)
                {
                    exitFlag = true;
                    continue;
                }
                if (_xmlImp.node.name == SVGNodeName.Stop)
                {
                    _stopList.Add(new SVGStopElement(_xmlImp.node.attributes));
                }
            }
        }