1 write to LocalName
System.Private.Xml (1)
System\Xml\Xsl\QIL\QilName.cs (1)
32LocalName = local;
24 references to LocalName
System.Private.Xml (24)
System\Xml\Xsl\IlGen\XmlILConstructAnalyzer.cs (1)
868qname = new XmlQualifiedName(_attrNames.Add(ndName.LocalName), _attrNames.Add(ndName.NamespaceUri));
System\Xml\Xsl\IlGen\XmlIlVisitor.cs (11)
154_helper.CallGetParameter(param.Name!.LocalName, param.Name.NamespaceUri); 195_helper.Emit(OpCodes.Ldstr, SR.Format(SR.XmlIl_UnknownParam, new string?[] { param!.Name!.LocalName, param.Name.NamespaceUri })); 594_helper.ConstructLiteralQName(ndQName.LocalName, ndQName.NamespaceUri); 1954_helper.CallGetAtomizedName(_helper.StaticData.DeclareName(name!.LocalName)); 2610_helper.CallGetAtomizedName(_helper.StaticData.DeclareName(ndName.LocalName)); 3566_helper.Emit(OpCodes.Ldstr, ndName.LocalName); 3615extFunc = new XmlExtensionFunction(ndName.LocalName, ndName.NamespaceUri, ndInvoke.ClrMethod); 4120localName = ndLiteralName.LocalName; 4130_helper.Emit(OpCodes.Ldstr, ndLiteralName.LocalName); 4258_helper.LoadInteger(_helper.StaticData.DeclareName(ndName.LocalName)); 4617_helper.CallGetNameFilter(_helper.StaticData.DeclareNameFilter(ndName.LocalName, ndName.NamespaceUri));
System\Xml\Xsl\QIL\QilTypeChecker.cs (1)
948XmlExtensionFunction extFunc = new XmlExtensionFunction(node.Name.LocalName, node.Name.NamespaceUri, node.ClrMethod);
System\Xml\Xsl\Xslt\CompilerScopeManager.cs (2)
201Debug.Assert(varName.LocalName != null && varName.NamespaceUri != null); 202AddRecord(ScopeFlags.Variable, varName.LocalName, varName.NamespaceUri, value);
System\Xml\Xsl\Xslt\Focus.cs (3)
109Debug.Assert(_current.Name!.NamespaceUri == XmlReservedNs.NsXslDebug && _current.Name.LocalName == "current"); 114Debug.Assert(_position.Name!.NamespaceUri == XmlReservedNs.NsXslDebug && _position.Name.LocalName == "position"); 119Debug.Assert(_last.Name!.NamespaceUri == XmlReservedNs.NsXslDebug && _last.Name.LocalName == "last");
System\Xml\Xsl\Xslt\InvokeGenerator.cs (1)
60Debug.Assert(formalArg.Name.LocalName == "namespaces", "Cur,Pos,Last don't have default values and should be always added to by caller in AddImplicitArgs()");
System\Xml\Xsl\Xslt\QilGenerator.cs (3)
525if (_scope.IsLocalVariable(xslPar.Name!.LocalName, xslPar.Name.NamespaceUri)) 1461if (_scope.IsLocalVariable(node.Name!.LocalName, node.Name.NamespaceUri)) 2683string attMode = (mode.LocalName.Length == 0) ? string.Empty : $" mode=\"{mode.QualifiedName}\"";
System\Xml\Xsl\Xslt\XslAst.cs (1)
210if (Mode.LocalName.Length != 0)
System\Xml\Xsl\Xslt\XslAstAnalyzer.cs (1)
1452var paramname = AstFactory.QName(variable.Name.LocalName, variable.Name.NamespaceUri, variable.Name.Prefix);