4 writes to localName
System.Data.SqlXml (4)
System\Xml\Xsl\Xslt\XsltInput.cs (4)
154rec.localName = reader.LocalName; 161rec.localName = atoms.NameTable.Add(rec.localName); 185rec.localName = string.Empty; 222rec.localName = string.Empty;
10 references to localName
System.Data.SqlXml (10)
System\Xml\Xsl\Xslt\XsltInput.cs (10)
64public string LocalName { get { return records[currentRecord].localName ;} } 161rec.localName = atoms.NameTable.Add(rec.localName); 251if (!Ref.Equal(rec.localName, atoms.Xml)) { 252scopeManager.AddNsDeclaration(rec.localName, atomizedValue); 253ctxInfo.AddNamespace(rec.localName, atomizedValue); 256} else if (rec.prefix.Length == 0 && Ref.Equal(rec.localName, atoms.Xmlns)) { // xmlns="NS_FOO" 273int nameLength = ((rec.prefix.Length != 0) ? rec.prefix.Length + 1 : 0) + rec.localName.Length; 500this.localName = rec.localName; 1032public string QualifiedName { get { return prefix.Length == 0 ? localName : string.Concat(prefix, ":", localName); } }