Restructure of mono.sln and build properties to better fix static/dynamic library...
[mono.git] / docs / HtmlAgilityPack / MixedCodeDocumentFragmentType.cs
1 // HtmlAgilityPack V1.0 - Simon Mourier <simon underscore mourier at hotmail dot com>\r
2 namespace HtmlAgilityPack\r
3 {\r
4     /// <summary>\r
5     /// Represents the type of fragment in a mixed code document.\r
6     /// </summary>\r
7     public enum MixedCodeDocumentFragmentType\r
8     {\r
9         /// <summary>\r
10         /// The fragment contains code.\r
11         /// </summary>\r
12         Code,\r
13 \r
14         /// <summary>\r
15         /// The fragment contains text.\r
16         /// </summary>\r
17         Text,\r
18     }\r
19 }