File: XmlReservedNs.cs

package info (click to toggle)
mono 6.8.0.105%2Bdfsg-3.3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,284,512 kB
  • sloc: cs: 11,172,132; xml: 2,850,069; ansic: 671,653; cpp: 122,091; perl: 59,366; javascript: 30,841; asm: 22,168; makefile: 20,093; sh: 15,020; python: 4,827; pascal: 925; sql: 859; sed: 16; php: 1
file content (42 lines) | stat: -rw-r--r-- 2,891 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//------------------------------------------------------------------------------
// <copyright file="XmlReservedNS.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>
// <owner current="true" primary="true">derekdb</owner>
//------------------------------------------------------------------------------

namespace System.Xml {

    /// <summary>
    /// This class defines a set of common XML namespaces for sharing across multiple source files.
    /// </summary>
    internal static class XmlReservedNs {
        internal const string NsXml             = "http://www.w3.org/XML/1998/namespace";
        internal const string NsXmlNs           = "http://www.w3.org/2000/xmlns/";
#if !SILVERLIGHT // These strings are not needed in Silverlight
        internal const string NsDataType        = "urn:schemas-microsoft-com:datatypes";
        internal const string NsDataTypeAlias   = "uuid:C2F41010-65B3-11D1-A29F-00AA00C14882";
        internal const string NsDataTypeOld     = "urn:uuid:C2F41010-65B3-11D1-A29F-00AA00C14882/";
        internal const string NsMsxsl           = "urn:schemas-microsoft-com:xslt";
        internal const string NsXdr             = "urn:schemas-microsoft-com:xml-data";
        internal const string NsXslDebug        = "urn:schemas-microsoft-com:xslt-debug";
        internal const string NsXdrAlias        = "uuid:BDC6E3F0-6DA3-11D1-A2A3-00AA00C14882";
        internal const string NsWdXsl           = "http://www.w3.org/TR/WD-xsl";
        internal const string NsXs              = "http://www.w3.org/2001/XMLSchema";
        internal const string NsXsd             = "http://www.w3.org/2001/XMLSchema-datatypes";
        internal const string NsXsi             = "http://www.w3.org/2001/XMLSchema-instance";
        internal const string NsXslt            = "http://www.w3.org/1999/XSL/Transform";
        internal const string NsExsltCommon     = "http://exslt.org/common";
        internal const string NsExsltDates      = "http://exslt.org/dates-and-times";
        internal const string NsExsltMath       = "http://exslt.org/math";
        internal const string NsExsltRegExps    = "http://exslt.org/regular-expressions";
        internal const string NsExsltSets       = "http://exslt.org/sets";
        internal const string NsExsltStrings    = "http://exslt.org/strings";
        internal const string NsXQueryFunc      = "http://www.w3.org/2003/11/xpath-functions";
        internal const string NsXQueryDataType  = "http://www.w3.org/2003/11/xpath-datatypes";
        internal const string NsCollationBase   = "http://collations.microsoft.com";
        internal const string NsCollCodePoint   = "http://www.w3.org/2004/10/xpath-functions/collation/codepoint";
        internal const string NsXsltInternal    = "http://schemas.microsoft.com/framework/2003/xml/xslt/internal";
#endif
    };
}