3 writes to _currentInfo
System.Private.Xml (3)
System\Xml\Xsl\XsltOld\RecordBuilder.cs (3)
335
_currentInfo
= attribute;
376
_currentInfo
= _dummy;
419
_currentInfo
= _mainNode;
28 references to _currentInfo
System.Private.Xml (28)
System\Xml\Xsl\XsltOld\RecordBuilder.cs (28)
105
_currentInfo
!.ValueAppend(s, disableOutputEscaping);
194
_currentInfo
!.Depth = _recordDepth;
195
_currentInfo
.NodeType = XmlNodeType.Text;
286
_currentInfo
!.NodeType = XmlNodeType.Element;
287
_currentInfo
.Prefix = prefix;
288
_currentInfo
.LocalName = name;
289
_currentInfo
.NamespaceURI = nspace;
290
_currentInfo
.Depth = _recordDepth;
291
_currentInfo
.IsEmptyTag = empty;
301
_currentInfo
!.NodeType = XmlNodeType.EndElement;
302
_currentInfo
.Prefix = elementScope.Prefix;
303
_currentInfo
.LocalName = elementScope.Name;
304
_currentInfo
.NamespaceURI = elementScope.Namespace;
305
_currentInfo
.Depth = _recordDepth;
377
_currentInfo
.NodeType = XmlNodeType.Attribute;
382
_currentInfo
!.NodeType = XmlNodeType.ProcessingInstruction;
383
_currentInfo
.Prefix = prefix;
384
_currentInfo
.LocalName = name;
385
_currentInfo
.NamespaceURI = nspace;
386
_currentInfo
.Depth = _recordDepth;
392
_currentInfo
!.NodeType = XmlNodeType.Comment;
393
_currentInfo
.Depth = _recordDepth;
421
_currentInfo
.Initialize(_atoms.Empty, _atoms.Empty, _atoms.Empty);
422
_currentInfo
.NodeType = XmlNodeType.None;
423
_currentInfo
.IsEmptyTag = false;
424
_currentInfo
.htmlProps = null;
425
_currentInfo
.htmlAttrProps = null;
615
Debug.Assert((object?)
_currentInfo
== (object)_mainNode);