コード例 #1
0
 public DTMXPathNavigator2(DTMXPathNavigator2 org)
 {
     this.document      = org.document;
     this.currentIsNode = org.currentIsNode;
     this.currentIsAttr = org.currentIsAttr;
     this.currentNode   = org.currentNode;
     this.currentAttr   = org.currentAttr;
     this.currentNs     = org.currentNs;
 }
コード例 #2
0
ファイル: DTMXPathNavigator2.cs プロジェクト: nobled/mono
		public DTMXPathNavigator2 (DTMXPathDocument2 document)
		{
			this.MoveToRoot ();
			this.document = document;
		}
コード例 #3
0
 public SeekableDTMXPathNavigator2(DTMXPathDocument2 document)
 {
     this.MoveToRoot();
     this.document = document;
 }