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

Create() public method

public Create ( XPathNavigator context, string value ) : void
context System.Xml.XPath.XPathNavigator
value string
return void
        public void Create(XPathNavigator context, string value) {
            this.navCurrent = XmlQueryRuntime.SyncToNavigator(this.navCurrent, context);
            this.idrefs = XmlConvert.SplitString(value);
            this.idx = -1;
        }