Base:
property
LocalName
Microsoft.Xml.XmlNode.LocalName
61 references to LocalName
dotnet-svcutil-lib (61)
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentSchemaValidator.cs (14)
208
if (!dictionary.ContainsKey(attr.
LocalName
))
210
dictionary.Add(attr.
LocalName
, attr.Value);
308
_validator.ValidateAttribute(attr.
LocalName
, attr.NamespaceURI, _nodeValueGetter, _attributeSchemaInfo);
311
attr.XmlName = _document.AddAttrXmlName(attr.Prefix, attr.
LocalName
, attr.NamespaceURI, _attributeSchemaInfo);
359
string objectName = attr.
LocalName
;
361
Debug.Assert(_nameTable.Get(attr.
LocalName
) != null);
376
_nsManager.AddNamespace(attr.Prefix.Length == 0 ? string.Empty : attr.
LocalName
, attr.Value);
418
_validator.ValidateAttribute(attr.
LocalName
, attr.NamespaceURI, _nodeValueGetter, _attributeSchemaInfo);
421
attr.XmlName = _document.AddAttrXmlName(attr.Prefix, attr.
LocalName
, attr.NamespaceURI, _attributeSchemaInfo);
447
attr.XmlName = _document.AddAttrXmlName(attr.Prefix, attr.
LocalName
, attr.NamespaceURI, _attributeSchemaInfo);
586
XmlQualifiedName attName = new XmlQualifiedName(attributeToValidate.
LocalName
, attributeToValidate.NamespaceURI);
715
string objectName = attr.
LocalName
;
717
Debug.Assert(_nameTable.Get(attr.
LocalName
) != null);
732
_nsManager.AddNamespace(attr.Prefix.Length == 0 ? string.Empty : attr.
LocalName
, attr.Value);
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXmlWriter.cs (2)
437
throw new XmlException(ResXml.Xml_DupAttributeName, attr.Prefix.Length == 0 ? attr.
LocalName
: string.Concat(attr.Prefix, ":", attr.
LocalName
));
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXPathNavigator.cs (5)
305
if (attribute.
LocalName
== localName
503
while (Ref.Equal(attribute.
LocalName
, _document.strXml))
614
localName = attribute.
LocalName
;
639
while (PathHasDuplicateNamespace(attribute.OwnerElement, _namespaceParent, attribute.
LocalName
));
1851
string prefix = attribute.Prefix.Length == 0 ? string.Empty : attribute.
LocalName
;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlAttribute.cs (4)
56
XmlAttribute attr = doc.CreateAttribute(Prefix,
LocalName
, NamespaceURI);
89
set { _name = _name.OwnerDocument.AddAttrXmlName(value,
LocalName
, NamespaceURI, SchemaInfo); }
147
return ownerElement.Attributes.PrepareParentInElementIdAttrMap(Prefix,
LocalName
);
344
w.WriteStartAttribute(Prefix,
LocalName
, NamespaceURI);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlAttributeCollection.cs (6)
72
&& localName == node.
LocalName
105
&& tmp.
LocalName
== node.
LocalName
190
int offset = FindNodeOffset(refNode.
LocalName
, refNode.NamespaceURI);
219
int offset = FindNodeOffset(refNode.
LocalName
, refNode.NamespaceURI);
364
int ind = FindNodeOffset(attr.
LocalName
, attr.NamespaceURI);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlLoader.cs (13)
268
attr.XmlName = _doc.AddAttrXmlName(attr.Prefix, attr.
LocalName
, attr.NamespaceURI, schemaInfo);
311
attr.XmlName = _doc.AddAttrXmlName(attr.Prefix, attr.
LocalName
, attr.NamespaceURI, schemaInfo);
709
if (attr.Prefix == _doc.strXmlns && prefixes.Contains(attr.
LocalName
) == false)
712
prefixes.Add(attr.
LocalName
, attr.
LocalName
);
713
mgr.AddNamespace(attr.
LocalName
, attr.Value);
715
else if (!bHasDefXmlnsAttr && attr.Prefix.Length == 0 && attr.
LocalName
== _doc.strXmlns)
721
else if (spaceMode == XmlSpace.None && attr.Prefix == _doc.strXml && attr.
LocalName
== _doc.strSpace)
729
else if (lang == null && attr.Prefix == _doc.strXml && attr.
LocalName
== _doc.strLang)
820
string nsUri = mgr.LookupNamespace(attr.
LocalName
);
832
mgr.AddNamespace(attr.
LocalName
, attr.Value);
835
else if (attr.Prefix.Length == 0 && attr.
LocalName
== _doc.strXmlns)
849
mgr.AddNamespace(attr.
LocalName
, attr.Value);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNode.cs (4)
1087
if (Ref.Equal(attr.
LocalName
, doc.strXmlns))
1101
if (Ref.Equal(attr.
LocalName
, prefix))
1170
if (Ref.Equal(attr.
LocalName
, doc.strXmlns))
1182
return attr.
LocalName
; // found xmlns:prefix="namespaceURI"
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNodeReader.cs (4)
965
if (a.Prefix.Length == 0 && a.
LocalName
== "xmlns")
974
string pref = a.
LocalName
;
1013
if (a.
LocalName
== "xmlns" && a.Prefix.Length == 0)
1022
string localName = a.
LocalName
;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlUnspecifiedAttribute.cs (1)
29
XmlUnspecifiedAttribute attr = (XmlUnspecifiedAttribute)doc.CreateDefaultAttribute(Prefix,
LocalName
, NamespaceURI);
FrameworkFork\Microsoft.Xml\Xml\Serialization\ImportContext.cs (1)
529
if (attribute.
LocalName
== Wsdl.ArrayType && attribute.NamespaceURI == Wsdl.Namespace)
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaImporter.cs (1)
489
if (a.
LocalName
== Wsdl.ArrayType && a.NamespaceURI == Wsdl.Namespace)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemas.cs (1)
418
if (a.
LocalName
== "IsDataSet" && a.NamespaceURI == "urn:schemas-microsoft-com:xml-msdata")
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializationReader.cs (1)
810
if ((object)attr.
LocalName
== (object)_wsdlArrayTypeID && (object)attr.NamespaceURI == (object)_wsdlNsID)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializationWriter.cs (1)
938
if (attr.NamespaceURI == Wsdl.Namespace && attr.
LocalName
== Wsdl.ArrayType)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\PolicyReader.cs (1)
238
&& attribute.
LocalName
== MetadataStrings.WSPolicy.Attributes.PolicyURIs);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlImporter.cs (2)
1039
&& attribute.
LocalName
== MetadataStrings.AddressingMetadata.Action)
1297
if (attribute.
LocalName
== localName && attribute.NamespaceURI == ns)