Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MixedCodeDocumentFragmentType.cs « HtmlAgilityPack « docs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 28ca5421f887fb0fcb95098051af54dd2070b0af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// HtmlAgilityPack V1.0 - Simon Mourier <simon underscore mourier at hotmail dot com>
namespace HtmlAgilityPack
{
    /// <summary>
    /// Represents the type of fragment in a mixed code document.
    /// </summary>
    public enum MixedCodeDocumentFragmentType
    {
        /// <summary>
        /// The fragment contains code.
        /// </summary>
        Code,

        /// <summary>
        /// The fragment contains text.
        /// </summary>
        Text,
    }
}