22 references to CoreSchemaNamespace
PresentationFramework (22)
System\Windows\Annotations\Annotation.cs (6)
60
[XmlRoot(Namespace = AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
, ElementName = AnnotationXmlConstants.Elements.Annotation)]
193
if (String.IsNullOrEmpty(writer.LookupPrefix(AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
)))
195
writer.WriteAttributeString(AnnotationXmlConstants.Prefixes.XmlnsPrefix, AnnotationXmlConstants.Prefixes.CoreSchemaPrefix, null, AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
222
writer.WriteStartElement(AnnotationXmlConstants.Elements.AuthorCollection, AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
235
writer.WriteStartElement(AnnotationXmlConstants.Elements.AnchorCollection, AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
248
writer.WriteStartElement(AnnotationXmlConstants.Elements.CargoCollection, AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
System\Windows\Annotations\AnnotationResource.cs (3)
38
[XmlRoot(Namespace = AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
, ElementName = AnnotationXmlConstants.Elements.Resource)]
119
if (String.IsNullOrEmpty(writer.LookupPrefix(AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
)))
121
writer.WriteAttributeString(AnnotationXmlConstants.Prefixes.XmlnsPrefix, AnnotationXmlConstants.Prefixes.CoreSchemaPrefix, null, AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
System\Windows\Annotations\LocatorGroup.cs (3)
36
[XmlRoot(Namespace = AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
, ElementName = AnnotationXmlConstants.Elements.ContentLocatorGroup)]
105
string prefix = writer.LookupPrefix(AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
108
writer.WriteAttributeString(AnnotationXmlConstants.Prefixes.XmlnsPrefix, AnnotationXmlConstants.Prefixes.CoreSchemaPrefix, null, AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
System\Windows\Annotations\LocatorPart.cs (2)
365
string corePrefix = namespaceManager.LookupPrefix(AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
392
string corePrefix = namespaceManager.LookupPrefix(AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
System\Windows\Annotations\LocatorPartList.cs (5)
41
[XmlRoot(Namespace = AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
, ElementName = AnnotationXmlConstants.Elements.ContentLocator)]
163
string prefix = writer.LookupPrefix(AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
166
writer.WriteAttributeString(AnnotationXmlConstants.Prefixes.XmlnsPrefix, AnnotationXmlConstants.Prefixes.CoreSchemaPrefix, null, AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
192
writer.WriteStartElement(AnnotationXmlConstants.Elements.Item, AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
245
if (AnnotationXmlConstants.Elements.Item == reader.LocalName && reader.NamespaceURI == AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
)
System\Windows\Annotations\Storage\XmlStreamStore.cs (3)
60
_predefinedNamespaces.Add(new Uri(AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
), null);
743
$"<?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}\" />");
752
_namespaceManager.AddNamespace(AnnotationXmlConstants.Prefixes.CoreSchemaPrefix, AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);