25 writes to Namespace
Microsoft.AspNetCore.Mvc.Formatters.Xml (2)
ProblemDetailsWrapper.cs (1)
14[XmlRoot("problem", Namespace = Namespace)]
ValidationProblemDetailsWrapper.cs (1)
12[XmlRoot("problem", Namespace = "urn:ietf:rfc:7807")]
PresentationFramework (4)
System\Windows\Annotations\Annotation.cs (1)
53[XmlRoot(Namespace = AnnotationXmlConstants.Namespaces.CoreSchemaNamespace, ElementName = AnnotationXmlConstants.Elements.Annotation)]
System\Windows\Annotations\AnnotationResource.cs (1)
32[XmlRoot(Namespace = AnnotationXmlConstants.Namespaces.CoreSchemaNamespace, ElementName = AnnotationXmlConstants.Elements.Resource)]
System\Windows\Annotations\LocatorGroup.cs (1)
30[XmlRoot(Namespace = AnnotationXmlConstants.Namespaces.CoreSchemaNamespace, ElementName = AnnotationXmlConstants.Elements.ContentLocatorGroup)]
System\Windows\Annotations\LocatorPartList.cs (1)
34[XmlRoot(Namespace = AnnotationXmlConstants.Namespaces.CoreSchemaNamespace, ElementName = AnnotationXmlConstants.Elements.ContentLocator)]
System.Data.Common (7)
System\Data\Common\ObjectStorage.cs (1)
628key.Value.Namespace = attribute.Namespace;
System\Data\XmlDataLoader.cs (2)
1217xmlAttrib.Namespace = _dataReader.NamespaceURI; 1222xmlAttrib.Namespace = column.Namespace;
System\Data\XMLDiffLoader.cs (2)
410xmlAttrib.Namespace = row.NamespaceURI; 415xmlAttrib.Namespace = column.Namespace;
System\Data\xmlsaver.cs (2)
2625xmlAttrib.Namespace = col.Namespace; 3058xmlAttrib.Namespace = col.Namespace;
System.Private.Xml (1)
System\Xml\Schema\XmlSchema.cs (1)
15[XmlRoot("schema", Namespace = XmlSchema.Namespace)]
System.ServiceModel.Syndication (11)
System\ServiceModel\Syndication\Atom10FeedFormatter.cs (2)
16[XmlRoot(ElementName = Atom10Constants.FeedTag, Namespace = Atom10Constants.Atom10Namespace)] 1222[XmlRoot(ElementName = Atom10Constants.FeedTag, Namespace = Atom10Constants.Atom10Namespace)]
System\ServiceModel\Syndication\Atom10ItemFormatter.cs (2)
11[XmlRoot(ElementName = Atom10Constants.EntryTag, Namespace = Atom10Constants.Atom10Namespace)] 140[XmlRoot(ElementName = Atom10Constants.EntryTag, Namespace = Atom10Constants.Atom10Namespace)]
System\ServiceModel\Syndication\AtomPub10CategoriesDocumentFormatter.cs (1)
11[XmlRoot(ElementName = App10Constants.Categories, Namespace = App10Constants.Namespace)]
System\ServiceModel\Syndication\AtomPub10ServiceDocumentFormatter.cs (2)
15[XmlRoot(ElementName = App10Constants.Service, Namespace = App10Constants.Namespace)] 635[XmlRoot(ElementName = App10Constants.Service, Namespace = App10Constants.Namespace)]
System\ServiceModel\Syndication\Rss20FeedFormatter.cs (2)
14[XmlRoot(ElementName = Rss20Constants.RssTag, Namespace = Rss20Constants.Rss20Namespace)] 1199[XmlRoot(ElementName = Rss20Constants.RssTag, Namespace = Rss20Constants.Rss20Namespace)]
System\ServiceModel\Syndication\Rss20ItemFormatter.cs (2)
11[XmlRoot(ElementName = Rss20Constants.ItemTag, Namespace = Rss20Constants.Rss20Namespace)] 163[XmlRoot(ElementName = Rss20Constants.ItemTag, Namespace = Rss20Constants.Rss20Namespace)]
10 references to Namespace
PresentationFramework (1)
MS\Internal\Annotations\Serializer.cs (1)
70writer.WriteStartElement(_attribute.ElementName, _attribute.Namespace);
System.Data.Common (3)
System\Data\Common\ObjectStorage.cs (3)
628key.Value.Namespace = attribute.Namespace; 653(x.Value.Namespace == y.Value.Namespace) &&
System.Private.DataContractSerialization (1)
System\Runtime\Serialization\XmlDataContract.cs (1)
172string? elementNs = xmlRootAttribute.Namespace;
System.Private.Xml (5)
System\Xml\Serialization\XmlReflectionImporter.cs (5)
273string ns = root?.Namespace ?? defaultNamespace ?? _defaultNs; 736else if (a.XmlRoot != null && a.XmlRoot.Namespace != null) 737typeNs = a.XmlRoot.Namespace; 1362xmlElement.Namespace = structAttrs.XmlRoot.Namespace; 2272string? ns = a.XmlRoot == null ? defaultNamespace : a.XmlRoot.Namespace;