1 //------------------------------------------------------------------------------
2 // <copyright file="XmlKnownDtds.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>
5 // <owner current="true" primary="true">helenak</owner>
6 //------------------------------------------------------------------------------
7 
8 namespace System.Xml.Resolvers {
9 
10     //
11     // XmlPreloadedResolver is an XmlResolver that which can be pre-loaded with data.
12     // By default it contains well-known DTDs for XHTML 1.0 and RSS 0.91.
13     // Custom mappings of URIs to data can be added with the Add method.
14     //
15     [Flags]
16     public enum XmlKnownDtds {
17         None        = 0x00,
18         Xhtml10     = 0x01,
19         Rss091      = 0x02,
20         All         = 0xFFFF,
21     }
22 }
23