System.Xml.Xsl.Runtime.ContentIterator.Create C# (CSharp) Method

Create() public method

Initialize the ContentIterator.
public Create ( XPathNavigator context ) : void
context System.Xml.XPath.XPathNavigator
return void
        public void Create(XPathNavigator context) {
            this.navCurrent = XmlQueryRuntime.SyncToNavigator(this.navCurrent, context);
            this.needFirst = true;
        }
ContentIterator