4 writes to currentInfo
System.Data.SqlXml (4)
System\Xml\Xsl\XsltOld\ReaderOutput.cs (4)
476
this.
currentInfo
= this.attributeValue;
508
this.
currentInfo
= this.mainNode;
517
this.
currentInfo
= (BuilderInfo) this.attributeList[attrib];
573
this.
currentInfo
= s_DefaultInfo;
18 references to currentInfo
System.Data.SqlXml (18)
System\Xml\Xsl\XsltOld\ReaderOutput.cs (18)
61
return this.
currentInfo
.NodeType;
88
return this.
currentInfo
.LocalName;
95
return this.
currentInfo
.NamespaceURI;
102
return this.
currentInfo
.Prefix;
115
return this.
currentInfo
.Value;
122
return this.
currentInfo
.Depth;
135
return this.
currentInfo
.IsEmptyTag;
255
if (NodeType == XmlNodeType.Attribute || this.
currentInfo
== this.attributeValue) {
290
this.
currentInfo
.NodeType = XmlNodeType.Whitespace;
300
this.
currentInfo
.NodeType = XmlNodeType.SignificantWhitespace;
333
if (NodeType == XmlNodeType.Element || NodeType == XmlNodeType.Attribute || this.
currentInfo
== this.attributeValue) {
470
if (this.
currentInfo
== this.attributeValue) {
474
this.attributeValue.Value = this.
currentInfo
.Value;
475
this.attributeValue.Depth = this.
currentInfo
.Depth + 1;
580
Debug.Assert(this.
currentInfo
!= null);
582
Debug.Assert((this.currentIndex == -1) == (this.
currentInfo
== this.mainNode));
583
Debug.Assert((this.currentIndex == -1) || (this.
currentInfo
== this.attributeValue || this.attributeList[this.currentIndex] is BuilderInfo && this.attributeList[this.currentIndex] == this.
currentInfo
));