22 references to CoreSchemaNamespace
PresentationFramework (22)
System\Windows\Annotations\Annotation.cs (6)
52
[XmlRoot(Namespace = AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
, ElementName = AnnotationXmlConstants.Elements.Annotation)]
185
if (String.IsNullOrEmpty(writer.LookupPrefix(AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
)))
187
writer.WriteAttributeString(AnnotationXmlConstants.Prefixes.XmlnsPrefix, AnnotationXmlConstants.Prefixes.CoreSchemaPrefix, null, AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
214
writer.WriteStartElement(AnnotationXmlConstants.Elements.AuthorCollection, AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
227
writer.WriteStartElement(AnnotationXmlConstants.Elements.AnchorCollection, AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
240
writer.WriteStartElement(AnnotationXmlConstants.Elements.CargoCollection, AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
System\Windows\Annotations\AnnotationResource.cs (3)
31
[XmlRoot(Namespace = AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
, ElementName = AnnotationXmlConstants.Elements.Resource)]
112
if (String.IsNullOrEmpty(writer.LookupPrefix(AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
)))
114
writer.WriteAttributeString(AnnotationXmlConstants.Prefixes.XmlnsPrefix, AnnotationXmlConstants.Prefixes.CoreSchemaPrefix, null, AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
System\Windows\Annotations\LocatorGroup.cs (3)
29
[XmlRoot(Namespace = AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
, ElementName = AnnotationXmlConstants.Elements.ContentLocatorGroup)]
98
string prefix = writer.LookupPrefix(AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
101
writer.WriteAttributeString(AnnotationXmlConstants.Prefixes.XmlnsPrefix, AnnotationXmlConstants.Prefixes.CoreSchemaPrefix, null, AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
System\Windows\Annotations\LocatorPart.cs (2)
360
string corePrefix = namespaceManager.LookupPrefix(AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
387
string corePrefix = namespaceManager.LookupPrefix(AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
System\Windows\Annotations\LocatorPartList.cs (5)
20
[XmlRoot(Namespace = AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
, ElementName = AnnotationXmlConstants.Elements.ContentLocator)]
141
string prefix = writer.LookupPrefix(AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
144
writer.WriteAttributeString(AnnotationXmlConstants.Prefixes.XmlnsPrefix, AnnotationXmlConstants.Prefixes.CoreSchemaPrefix, null, AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
170
writer.WriteStartElement(AnnotationXmlConstants.Elements.Item, AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
223
if (AnnotationXmlConstants.Elements.Item == reader.LocalName && reader.NamespaceURI == AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
)
System\Windows\Annotations\Storage\XmlStreamStore.cs (3)
48
_predefinedNamespaces.Add(new Uri(AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
), null);
733
$"<?xml version=\"1.0\" encoding=\"utf-8\"?> <{AnnotationXmlConstants.Prefixes.CoreSchemaPrefix}:Annotations xmlns:{AnnotationXmlConstants.Prefixes.CoreSchemaPrefix}=\"{AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
}\" xmlns:{AnnotationXmlConstants.Prefixes.BaseSchemaPrefix}=\"{AnnotationXmlConstants.Namespaces.BaseSchemaNamespace}\" />");
742
_namespaceManager.AddNamespace(AnnotationXmlConstants.Prefixes.CoreSchemaPrefix, AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);