3 writes to currentInfo
System.Data.SqlXml (3)
System\Xml\Xsl\XsltOld\RecordBuilder.cs (3)
302
this.
currentInfo
= attribute;
333
this.
currentInfo
= dummy;
370
this.
currentInfo
= this.mainNode;
28 references to currentInfo
System.Data.SqlXml (28)
System\Xml\Xsl\XsltOld\RecordBuilder.cs (28)
101
this.
currentInfo
.ValueAppend(s, disableOutputEscaping);
180
this.
currentInfo
.Depth = this.recordDepth;
181
this.
currentInfo
.NodeType = XmlNodeType.Text;
258
this.
currentInfo
.NodeType = XmlNodeType.Element;
259
this.
currentInfo
.Prefix = prefix;
260
this.
currentInfo
.LocalName = name;
261
this.
currentInfo
.NamespaceURI = nspace;
262
this.
currentInfo
.Depth = this.recordDepth;
263
this.
currentInfo
.IsEmptyTag = empty;
272
this.
currentInfo
.NodeType = XmlNodeType.EndElement;
273
this.
currentInfo
.Prefix = elementScope.Prefix;
274
this.
currentInfo
.LocalName = elementScope.Name;
275
this.
currentInfo
.NamespaceURI = elementScope.Namespace;
276
this.
currentInfo
.Depth = this.recordDepth;
334
currentInfo
.NodeType = XmlNodeType.Attribute;
338
this.
currentInfo
.NodeType = XmlNodeType.ProcessingInstruction;
339
this.
currentInfo
.Prefix = prefix;
340
this.
currentInfo
.LocalName = name;
341
this.
currentInfo
.NamespaceURI = nspace;
342
this.
currentInfo
.Depth = this.recordDepth;
347
this.
currentInfo
.NodeType = XmlNodeType.Comment;
348
this.
currentInfo
.Depth = this.recordDepth;
372
this.
currentInfo
.Initialize(this.atoms.Empty, this.atoms.Empty, this.atoms.Empty);
373
this.
currentInfo
.NodeType = XmlNodeType.None;
374
this.
currentInfo
.IsEmptyTag = false;
375
this.
currentInfo
.htmlProps = null;
376
this.
currentInfo
.htmlAttrProps = null;
526
Debug.Assert((object) this.
currentInfo
== (object) this.mainNode);