Example #1
0
        public bool MoveNext(string aValue)
        {
            _DNChild = GetTagValue(_DNSelected.InnerText, _DNChild.TagValueEnd, aValue);

            int iEnd = _DNChild.TagValueEnd + aValue.Length + 3;

            return(iEnd < _InnerText.Length);
        }
Example #2
0
        public void Select(string aPath)
        {
            string[] mPath = aPath.Split('/');

            _DNSelected.InnerText = _InnerText.Trim();

            foreach (string sTag in mPath)
            {
                if (sTag != "")
                {
                    _DNSelected = GetTagValue(_DNSelected.InnerText, 0, sTag);
                }
            }
        }
Example #3
0
        public void Select(string aPath)
        {
            string[] mPath = aPath.Split('/');

            _DNSelected.InnerText = _InnerText.Trim();

            foreach (string sTag in mPath)
            {
                if (sTag != "")
                {
                    _DNSelected = GetTagValue(_DNSelected.InnerText, 0, sTag);
                }
            }
        }
Example #4
0
        public bool MoveNext( string aValue )
        {
            _DNChild = GetTagValue(_DNSelected.InnerText, _DNChild.TagValueEnd, aValue);

            int iEnd = _DNChild.TagValueEnd + aValue.Length + 3;
            return ( iEnd < _InnerText.Length);
        }