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