Base:
property
NamespaceURI
System.Xml.XmlNode.NamespaceURI
67 references to NamespaceURI
Microsoft.Build (12)
Construction\ProjectElement.cs (1)
375ReplaceElement(XmlUtilities.RenameXmlElement(XmlElement, element.ElementName, XmlElement.NamespaceURI));
Construction\ProjectExtensionsElement.cs (1)
137idElement = XmlDocument.CreateElement(name, XmlElement.NamespaceURI);
Construction\ProjectItemElement.cs (1)
453XmlElementWithLocation newElement = XmlUtilities.RenameXmlElement(XmlElement, newItemType, XmlElement.NamespaceURI);
Construction\ProjectMetadataElement.cs (1)
141XmlElementWithLocation newElement = XmlUtilities.RenameXmlElement(XmlElement, newName, XmlElement.NamespaceURI);
Construction\ProjectPropertyElement.cs (1)
123XmlElementWithLocation newElement = XmlUtilities.RenameXmlElement(XmlElement, newName, XmlElement.NamespaceURI);
Construction\ProjectUsingTaskParameterElement.cs (1)
75XmlElementWithLocation newElement = XmlUtilities.RenameXmlElement(XmlElement, value, XmlElement.NamespaceURI);
Construction\Solution\ProjectInSolution.cs (2)
329bool emptyNamespace = string.IsNullOrEmpty(mainProjectElement.NamespaceURI); 330bool defaultNamespace = String.Equals(mainProjectElement.NamespaceURI,
Evaluation\ProjectParser.cs (1)
147_project.XmlNamespace = element.NamespaceURI;
Xml\ProjectXmlUtilities.cs (2)
95else if (string.Equals(element.NamespaceURI, XMakeAttributes.defaultXmlNamespace, StringComparison.OrdinalIgnoreCase)) 99else if (string.IsNullOrEmpty(element.NamespaceURI))
XmlUtilities.cs (1)
30if (String.Equals(oldElement.Name, newElementName, StringComparison.Ordinal) && String.Equals(oldElement.NamespaceURI, xmlNamespace, StringComparison.Ordinal))
Microsoft.Build.Tasks.Core (2)
BootstrapperUtil\BootstrapperBuilder.cs (2)
868string.Equals(xmlDocument.DocumentElement.NamespaceURI, schemaNamespace, StringComparison.Ordinal), 869"'" + xmlDocument.DocumentElement.NamespaceURI + "' is not '" + schemaNamespace + "'...");
PresentationBuildTasks (1)
Microsoft\Build\Tasks\Windows\GenerateTemporaryTargetAssembly.cs (1)
886XmlNode nodeImport = xmlProjectDoc.CreateElement("Import", xmlProjectDoc.DocumentElement.NamespaceURI);
PresentationFramework (2)
MS\Internal\Annotations\Component\HighlightComponent.cs (1)
492(content.NamespaceURI == AnnotationXmlConstants.Namespaces.BaseSchemaNamespace))
MS\Internal\IO\Packaging\XmlGlyphRunInfo.cs (1)
43&& string.Equals(_glyphsNode.NamespaceURI, ElementTableKey.FixedMarkupNamespace, StringComparison.Ordinal));
ReachFramework (2)
PrintConfig\PrtTicket_Editor.cs (2)
49if ((root.NamespaceURI != PrintSchemaNamespaces.Framework) || 54root.NamespaceURI,
System.Data.Common (7)
System\Data\DataSet.cs (4)
2278Debug.Assert(root.NamespaceURI != null, "root.NamespaceURI should not ne null, it should be empty string"); 2287if (DataSetName != root.Name && _namespaceURI != root.NamespaceURI && 2288Tables.Contains(root.Name, (root.NamespaceURI.Length == 0) ? null : root.NamespaceURI, false, true))
System\Xml\DataSetMappper.cs (2)
91DataTable t = SearchMatchingTableSchema(elem.LocalName, elem.NamespaceURI); 155object tid = GetIdentity(rowElem.LocalName, rowElem.NamespaceURI);
System\Xml\XmlDataDocument.cs (1)
1526if (e.LocalName == col.EncodedColumnName && e.NamespaceURI == col.Namespace)
System.Private.DataContractSerialization (9)
System\Runtime\Serialization\SchemaImporter.cs (9)
1252if (typeElement != null && typeElement.NamespaceURI == surrogateDataAnnotationName.Namespace && typeElement.LocalName == surrogateDataAnnotationName.Name) 1273if (typeElement != null && typeElement.NamespaceURI == Globals.SerializationNamespace) 1301argumentElement.NamespaceURI != Globals.SerializationNamespace) 1302throw new InvalidDataContractException(SR.Format(SR.GenericAnnotationHasInvalidElement, argumentElement.LocalName, argumentElement.NamespaceURI, type.Name)); 1308throw new InvalidDataContractException(SR.Format(SR.GenericAnnotationHasInvalidAttributeValue, argumentElement.LocalName, argumentElement.NamespaceURI, type.Name, nestedLevelAttribute.Value, nestedLevelAttribute.LocalName, Globals.TypeOfInt.Name)); 1311throw new InvalidDataContractException(SR.Format(SR.GenericAnnotationForNestedLevelMustBeIncreasing, argumentElement.LocalName, argumentElement.NamespaceURI, type.Name)); 1323throw new InvalidDataContractException(SR.Format(SR.GenericAnnotationHasInvalidAttributeValue, typeElement.LocalName, typeElement.NamespaceURI, type.Name, typeNestedLevelsAttribute.Value, typeNestedLevelsAttribute.LocalName, Globals.TypeOfInt.Name)); 1418ThrowTypeCannotBeImportedException(typeName.Name, typeName.Namespace, SR.Format(SR.InvalidAnnotationExpectingText, xmlElement.LocalName, xmlElement.NamespaceURI, child.LocalName, child.NamespaceURI)); 1436if (markup[i] is XmlElement annotationElement && annotationElement.LocalName == annotationQualifiedName.Name && annotationElement.NamespaceURI == annotationQualifiedName.Namespace)
System.Private.Xml (13)
System\Xml\Dom\DocumentSchemaValidator.cs (4)
358_validator!.ValidateElement(elementNode.LocalName, elementNode.NamespaceURI, _schemaInfo, xsiType, xsiNil, null, null); 374elementNode.XmlName = _document.AddXmlName(elementNode.Prefix, elementNode.LocalName, elementNode.NamespaceURI, _schemaInfo); 592currentElement.XmlName = _document.AddXmlName(currentElement.Prefix, currentElement.LocalName, currentElement.NamespaceURI, _schemaInfo); 707_validator!.ValidateElement(elementNode.LocalName, elementNode.NamespaceURI, newSchemaInfo, xsiType, xsiNil, null, null);
System\Xml\Dom\XmlDocument.cs (1)
698XmlQualifiedName qname = new XmlQualifiedName(elem.LocalName, schInfo.SchemaType == SchemaType.DTD ? elem.Prefix : elem.NamespaceURI);
System\Xml\Dom\XmlElement.cs (3)
58XmlElement element = doc.CreateElement(Prefix, LocalName, NamespaceURI); 106set { _name = _name.OwnerDocument.AddXmlName(value, LocalName, NamespaceURI, SchemaInfo); } 510w.WriteStartElement(Prefix, LocalName, NamespaceURI);
System\Xml\Dom\XmlLoader.cs (2)
137element.XmlName = _doc.AddXmlName(element.Prefix, element.LocalName, element.NamespaceURI, schemaInfo); 155element.XmlName = _doc!.AddXmlName(element.Prefix, element.LocalName, element.NamespaceURI, schemaInfo);
System\Xml\Serialization\ReflectionXmlSerializationWriter.cs (3)
242if (element.Name == elem.Name && element.Namespace == elem.NamespaceURI) 251throw CreateChoiceIdentifierValueException(choice.Mapping!.TypeDesc!.FullName, choice.MemberName!, elem.Name, elem.NamespaceURI); 260throw CreateUnknownAnyElementException(elem.Name, elem.NamespaceURI);
System.Runtime.Serialization.Schema (1)
System\Runtime\Serialization\Schema\XsdDataContractImporter.cs (1)
390if (annotationElement != null && annotationElement.LocalName == annotationQualifiedName.Name && annotationElement.NamespaceURI == annotationQualifiedName.Namespace)
System.Security.Cryptography.Xml (18)
System\Security\Cryptography\Xml\CanonicalXmlElement.cs (4)
56if (!Utils.IsCommittedNamespace(this, Prefix, NamespaceURI)) 60nsattrib.Value = NamespaceURI; 128if (!Utils.IsCommittedNamespace(this, Prefix, NamespaceURI)) 132nsattrib.Value = NamespaceURI;
System\Security\Cryptography\Xml\DSAKeyValue.cs (1)
162|| value.NamespaceURI != SignedXml.XmlDsigNamespaceUrl)
System\Security\Cryptography\Xml\EncryptionProperty.cs (3)
26if (elementProperty.LocalName != "EncryptionProperty" || elementProperty.NamespaceURI != EncryptedXml.XmlEncNamespaceUrl) 51if (value.LocalName != "EncryptionProperty" || value.NamespaceURI != EncryptedXml.XmlEncNamespaceUrl) 89if (value.LocalName != "EncryptionProperty" || value.NamespaceURI != EncryptedXml.XmlEncNamespaceUrl)
System\Security\Cryptography\Xml\KeyInfo.cs (1)
82string kicString = elem.NamespaceURI + " " + elem.LocalName;
System\Security\Cryptography\Xml\RSAKeyValue.cs (1)
117|| value.NamespaceURI != SignedXml.XmlDsigNamespaceUrl)
System\Security\Cryptography\Xml\Utils.cs (4)
29if (element.Prefix == prefix && element.NamespaceURI == value) return true; 518if (!Utils.IsCommittedNamespace(ancestorElement, ancestorElement.Prefix, ancestorElement.NamespaceURI)) 521if (!Utils.IsRedundantNamespace(ancestorElement, ancestorElement.Prefix, ancestorElement.NamespaceURI)) 525nsattrib.Value = ancestorElement.NamespaceURI;
System\Security\Cryptography\Xml\XmlDecryptionTransform.cs (2)
99if (elem.LocalName == "Except" && elem.NamespaceURI == Consts.XmlDecryptionTransformNamespaceUrl) 234encryptedDataElement.NamespaceURI == EncryptedXml.XmlEncNamespaceUrl)
System\Security\Cryptography\Xml\XmlDsigExcC14NTransform.cs (1)
56&& e.NamespaceURI.Equals(SignedXml.XmlDsigExcC14NTransformUrl) &&
System\Security\Cryptography\Xml\XmlDsigXPathTransform.cs (1)
68namespaceURI = elem.NamespaceURI;