// source: mvpxml.codeplex.com namespace Umbraco.Core.Xml { /// /// Provides public constants for wellknown XML namespaces. /// /// Author: Daniel Cazzulino, blog public static class XmlNamespaces { /// /// The public XML 1.0 namespace. /// /// See http://www.w3.org/TR/2004/REC-xml-20040204/ public const string Xml = "http://www.w3.org/XML/1998/namespace"; /// /// Public Xml Namespaces specification namespace. /// /// See http://www.w3.org/TR/REC-xml-names/ public const string XmlNs = "http://www.w3.org/2000/xmlns/"; /// /// Public Xml Namespaces prefix. /// /// See http://www.w3.org/TR/REC-xml-names/ public const string XmlNsPrefix = "xmlns"; /// /// XML Schema instance namespace. /// /// See http://www.w3.org/TR/xmlschema-1/ public const string Xsi = "http://www.w3.org/2001/XMLSchema-instance"; /// /// XML 1.0 Schema namespace. /// /// See http://www.w3.org/TR/xmlschema-1/ public const string Xsd = "http://www.w3.org/2001/XMLSchema"; } }