e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
23 lines
807 B
C#
23 lines
807 B
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="XmlKnownDtds.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
// <owner current="true" primary="true">helenak</owner>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.Xml.Resolvers {
|
|
|
|
//
|
|
// XmlPreloadedResolver is an XmlResolver that which can be pre-loaded with data.
|
|
// By default it contains well-known DTDs for XHTML 1.0 and RSS 0.91.
|
|
// Custom mappings of URIs to data can be added with the Add method.
|
|
//
|
|
[Flags]
|
|
public enum XmlKnownDtds {
|
|
None = 0x00,
|
|
Xhtml10 = 0x01,
|
|
Rss091 = 0x02,
|
|
All = 0xFFFF,
|
|
}
|
|
}
|