public DTMXPathNavigator(DTMXPathDocument document, XmlNameTable nameTable, DTMXPathLinkedNode[] nodes, DTMXPathAttributeNode[] attributes, DTMXPathNamespaceNode[] namespaces, Hashtable idTable)
 {
     this.nodes      = nodes;
     this.attributes = attributes;
     this.namespaces = namespaces;
     this.idTable    = idTable;
     this.nameTable  = nameTable;
     this.MoveToRoot();
     this.document = document;
 }
Пример #2
0
		public DTMXPathNavigator (DTMXPathDocument document,
			XmlNameTable nameTable, 
			DTMXPathLinkedNode [] nodes,
			DTMXPathAttributeNode [] attributes,
			DTMXPathNamespaceNode [] namespaces,
			Hashtable idTable)
		{
			this.nodes = nodes;
			this.attributes = attributes;
			this.namespaces = namespaces;
			this.idTable = idTable;
			this.nameTable = nameTable;
			this.MoveToRoot ();
			this.document = document;
		}