summaryrefslogtreecommitdiffstats
path: root/tools/Sandcastle/Source/CommandLine/ParseResult.cs
blob: cfdd10842545d5a67326ebef50fbf33323dc5a1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) Microsoft Corporation.  All rights reserved.
//

namespace Microsoft.Ddue.Tools.CommandLine
{

    internal enum ParseResult {
        Success,
        ArgumentNotAllowed,
        MalformedArgument,
        MissingOption,
        UnrecognizedOption,
        MultipleOccurance
    }

}