22 references to CoreSchemaNamespace
PresentationFramework (22)
System\Windows\Annotations\Annotation.cs (6)
53
[XmlRoot(Namespace = AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
, ElementName = AnnotationXmlConstants.Elements.Annotation)]
186
if (String.IsNullOrEmpty(writer.LookupPrefix(AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
)))
188
writer.WriteAttributeString(AnnotationXmlConstants.Prefixes.XmlnsPrefix, AnnotationXmlConstants.Prefixes.CoreSchemaPrefix, null, AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
215
writer.WriteStartElement(AnnotationXmlConstants.Elements.AuthorCollection, AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
228
writer.WriteStartElement(AnnotationXmlConstants.Elements.AnchorCollection, AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
241
writer.WriteStartElement(AnnotationXmlConstants.Elements.CargoCollection, AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
System\Windows\Annotations\AnnotationResource.cs (3)
32
[XmlRoot(Namespace = AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
, ElementName = AnnotationXmlConstants.Elements.Resource)]
113
if (String.IsNullOrEmpty(writer.LookupPrefix(AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
)))
115
writer.WriteAttributeString(AnnotationXmlConstants.Prefixes.XmlnsPrefix, AnnotationXmlConstants.Prefixes.CoreSchemaPrefix, null, AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
System\Windows\Annotations\LocatorGroup.cs (3)
30
[XmlRoot(Namespace = AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
, ElementName = AnnotationXmlConstants.Elements.ContentLocatorGroup)]
99
string prefix = writer.LookupPrefix(AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
102
writer.WriteAttributeString(AnnotationXmlConstants.Prefixes.XmlnsPrefix, AnnotationXmlConstants.Prefixes.CoreSchemaPrefix, null, AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
System\Windows\Annotations\LocatorPart.cs (2)
361
string corePrefix = namespaceManager.LookupPrefix(AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
388
string corePrefix = namespaceManager.LookupPrefix(AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
System\Windows\Annotations\LocatorPartList.cs (5)
21
[XmlRoot(Namespace = AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
, ElementName = AnnotationXmlConstants.Elements.ContentLocator)]
142
string prefix = writer.LookupPrefix(AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
145
writer.WriteAttributeString(AnnotationXmlConstants.Prefixes.XmlnsPrefix, AnnotationXmlConstants.Prefixes.CoreSchemaPrefix, null, AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
171
writer.WriteStartElement(AnnotationXmlConstants.Elements.Item, AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);
224
if (AnnotationXmlConstants.Elements.Item == reader.LocalName && reader.NamespaceURI == AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
)
System\Windows\Annotations\Storage\XmlStreamStore.cs (3)
49
_predefinedNamespaces.Add(new Uri(AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
), null);
734
$"<?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}\" />");
743
_namespaceManager.AddNamespace(AnnotationXmlConstants.Prefixes.CoreSchemaPrefix, AnnotationXmlConstants.Namespaces.
CoreSchemaNamespace
);