15 overrides of LocalName
System.Xml (15)
System\Xml\Dom\XmlAttribute.cs (1)
67public override String LocalName {
System\Xml\Dom\XmlCDataSection.cs (1)
28public override String LocalName {
System\Xml\Dom\XmlComment.cs (1)
23public override String LocalName {
System\Xml\Dom\XmlDeclaration.cs (1)
123public override string LocalName {
System\Xml\Dom\XmlDocument.cs (1)
291public override String LocalName {
System\Xml\Dom\XmlDocumentFragment.cs (1)
64public override String LocalName {
System\Xml\Dom\XmlDocumentType.cs (1)
47public override string LocalName {
System\Xml\Dom\XmlElement.cs (1)
77public override string LocalName {
System\Xml\Dom\XmlEntity.cs (1)
55public override string LocalName {
System\Xml\Dom\XmlEntityReference.cs (1)
54public override string LocalName {
System\Xml\Dom\XmlNotation.cs (1)
30public override string LocalName {
System\Xml\Dom\XmlProcessingInstruction.cs (1)
36public override string LocalName {
System\Xml\Dom\XmlSignificantWhiteSpace.cs (1)
30public override String LocalName {
System\Xml\Dom\XmlText.cs (1)
31public override String LocalName {
System\Xml\Dom\XmlWhitespace.cs (1)
30public override String LocalName {
64 references to LocalName
PresentationFramework (2)
src\Framework\MS\Internal\IO\Packaging\XmlFixedPageInfo.cs (2)
43if (_pageNode.LocalName != _fixedPageName || _pageNode.NamespaceURI != ElementTableKey.FixedMarkupNamespace) 46_pageNode.NamespaceURI, _pageNode.LocalName,
System.Data (16)
fx\src\data\System\Data\XmlDataLoader.cs (3)
455if (parentElement.LocalName == Keywords.XSD_SCHEMA && parentElement.NamespaceURI == Keywords.XSDNS || 456parentElement.LocalName == Keywords.SQL_SYNC && parentElement.NamespaceURI == Keywords.UPDGNS || 457parentElement.LocalName == Keywords.XDR_SCHEMA && parentElement.NamespaceURI == Keywords.XDRNS)
fx\src\data\System\Data\XMLSchema.cs (1)
75if (node != null && node.LocalName == name && node.NamespaceURI == ns)
fx\src\data\System\Data\XmlToDatasetMap.cs (4)
49id.LocalName = node.LocalName; 413tableSchemaInfo = (TableSchemaInfo) (fIgnoreNamespace ? tableSchemaMap[nodeRegion.LocalName] : tableSchemaMap[nodeRegion]); 419return tableSchemaInfo.ColumnsSchemaMap[node.LocalName]; 442tableSchemaInfo = (TableSchemaInfo) (fIgnoreNamespace ? tableSchemaMap[node.LocalName] : tableSchemaMap[node]);
fx\src\data\System\NewXml\DataPointer.cs (2)
338String name = node.LocalName; 539if (n.LocalName == column.EncodedColumnName && n.NamespaceURI == column.Namespace)
fx\src\data\System\NewXml\DataSetMappper.cs (1)
136object cid = GetIdentity( node.LocalName, node.NamespaceURI );
fx\src\data\System\NewXml\XPathNodePointer.cs (5)
185if ( IsNamespaceNode( nt, this._node.NamespaceURI ) && this._node.LocalName == s_strXmlNS ) 188return _node.LocalName; 211if ( this._node.LocalName == s_strXmlNS ) 214return this._node.LocalName; 1168if (n.LocalName == _column.EncodedColumnName && n.NamespaceURI == _column.Namespace)
System.IdentityModel (2)
System\IdentityModel\Tokens\GenericXmlSecurityKeyIdentifierClause.cs (2)
52if (originalNode.LocalName != newNode.LocalName || originalNode.InnerText != newNode.InnerText)
System.Runtime.Serialization (3)
System\Runtime\Serialization\SchemaImporter.cs (3)
1324throw System.Runtime.Serialization.DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidDataContractException(SR.GetString(SR.GenericAnnotationHasInvalidAttributeValue, argumentElement.LocalName, argumentElement.NamespaceURI, type.Name, nestedLevelAttribute.Value, nestedLevelAttribute.LocalName, Globals.TypeOfInt.Name))); 1338throw System.Runtime.Serialization.DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidDataContractException(SR.GetString(SR.GenericAnnotationHasInvalidAttributeValue, typeElement.LocalName, typeElement.NamespaceURI, type.Name, typeNestedLevelsAttribute.Value, typeNestedLevelsAttribute.LocalName, Globals.TypeOfInt.Name))); 1430ThrowTypeCannotBeImportedException(typeName.Name, typeName.Namespace, SR.GetString(SR.InvalidAnnotationExpectingText, xmlElement.LocalName, xmlElement.NamespaceURI, child.LocalName, child.NamespaceURI));
System.ServiceModel (19)
System\ServiceModel\Channels\OneWayBindingElementImporter.cs (1)
43&& currentNode.LocalName == OneWayPolicyConstants.PacketRoutable)
System\ServiceModel\Channels\ReliableSessionBindingElementImporter.cs (10)
108&& (node.LocalName == assertion)); 142SetInactivityTimeout(settings, ReadMillisecondsAttribute(currentNode, true), currentNode.LocalName); 152SetAcknowledgementInterval(settings, ReadMillisecondsAttribute(currentNode, true), currentNode.LocalName); 181SetInactivityTimeout(settings, ReadMillisecondsAttribute(currentNode, true), currentNode.LocalName); 201SetAcknowledgementInterval(settings, ReadMillisecondsAttribute(currentNode, true), currentNode.LocalName); 246throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidChannelBindingException(SR.GetString(SR.RequiredAttributeIsMissing, ReliableSessionPolicyStrings.Milliseconds, wsrmNode.LocalName, ReliableSessionPolicyStrings.ReliableSessionName))); 265throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidChannelBindingException(SR.GetString(SR.RequiredMillisecondsAttributeIncorrect, wsrmNode.LocalName), innerException)); 277throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidChannelBindingException(SR.GetString(SR.MillisecondsNotConvertibleToBindingRange, wsrmNode.LocalName), exception)); 350MetadataStrings.WSPolicy.Elements.Policy, node.LocalName, node.NamespaceURI); 518policyNode.LocalName,
System\ServiceModel\Security\SspiNegotiationTokenProvider.cs (2)
124if (this.StandardsManager.TrustDriver.IsRequestedSecurityTokenElement(child.LocalName, child.NamespaceURI)) 128else if (this.StandardsManager.TrustDriver.IsRequestedProofTokenElement(child.LocalName, child.NamespaceURI))
System\ServiceModel\Security\WSSecurityPolicy.cs (1)
427if (node is XmlElement && node.LocalName == PolicyName && (node.NamespaceURI == WspNamespace || node.NamespaceURI == Wsp15Namespace))
System\ServiceModel\Security\WSSecurityPolicy12.cs (4)
94if (node is XmlElement && node.LocalName == WSSecurityPolicy.PolicyName && (node.NamespaceURI == WSSecurityPolicy.WspNamespace || node.NamespaceURI == WSSecurityPolicy.Wsp15Namespace)) 107if (node.LocalName == WSSecurityPolicy.RequireClientCertificateName) 111else if (node.LocalName == WSSecurityPolicy.HttpBasicAuthenticationName) 115else if (node.LocalName == WSSecurityPolicy.HttpDigestAuthenticationName)
System\ServiceModel\Security\XmlHelper.cs (1)
99if (child.LocalName == childLocalName && child.NamespaceURI == childNamespace)
System.Web (2)
UI\WebControls\AdRotator.cs (2)
606if (elem.LocalName.Equals(XmlAdTag)) { 613dict.Add(prop.LocalName, prop.InnerText);
System.Web.Extensions (2)
Compilation\WCFModel\SchemaMerger.cs (2)
504string child1Name = differentChild1 != null ? ((XmlNode)differentChild1).LocalName : String.Empty; 505string child2Name = differentChild2 != null ? ((XmlNode)differentChild2).LocalName : String.Empty;
System.Xml (17)
System\Xml\Dom\DocumentXPathNavigator.cs (5)
118string localName = source.LocalName; 761&& child.LocalName == localName 849|| following.LocalName != localName 933&& sibling.LocalName == localName 1986return Ref.Equal(node.LocalName, localNameAtom) && Ref.Equal(node.NamespaceURI, nsAtom);
System\Xml\Dom\XmlAttributeCollection.cs (2)
105int offset = FindNodeOffset( node.LocalName, node.NamespaceURI ); 277XmlAttribute defattr = parent.OwnerDocument.GetDefaultAttribute( (XmlElement)parent, retNode.Prefix, retNode.LocalName, retNode.NamespaceURI );
System\Xml\Dom\XmlDocument.cs (2)
795newNode = CreateElement( node.Prefix, node.LocalName, node.NamespaceURI ); 803newNode = CreateAttribute( node.Prefix, node.LocalName, node.NamespaceURI );
System\Xml\Dom\XmlElementList.cs (1)
149(Ref.Equal(this.localName, asterisk) || Ref.Equal(curNode.LocalName, this.localName) ) &&
System\Xml\Dom\XmlNamedNodemap.cs (2)
34int offset = FindNodeOffset( node.LocalName, node.NamespaceURI ); 113if (node.LocalName == localName && node.NamespaceURI == namespaceURI)
System\Xml\Dom\XmlNode.cs (1)
1053if (n.NodeType == XmlNodeType.Element && n.LocalName == localname && n.NamespaceURI == ns)
System\Xml\Dom\XmlNodeReader.cs (1)
145return curNode.LocalName;
System\Xml\Serialization\_Events.cs (1)
193get { return xmlNode.LocalName; }
System\Xml\Serialization\XmlSerializationWriter.cs (2)
693if (node.LocalName != name || node.NamespaceURI != ns) 694throw new InvalidOperationException(Res.GetString(Res.XmlElementNameMismatch, node.LocalName, node.NamespaceURI, name, ns));
WindowsBase (1)
Base\MS\Internal\IO\Packaging\XmlDigitalSignatureProcessor.cs (1)
702(String.CompareOrdinal(node.LocalName, XTable.Get(XTable.ID.SignatureTagName)) != 0))