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