summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Security/Principal/PrincipalPolicy.cs
blob: 336986808c95144a55b1f808e0e6fc31a89198c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

// 

//
//
//  Enum describing what type of principal to create by default (assuming no
//  principal has been set on the AppDomain).
//

namespace System.Security.Principal
{
    [Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
    public enum PrincipalPolicy {
        // Note: it's important that the default policy has the value 0.
        UnauthenticatedPrincipal = 0,
        NoPrincipal = 1,
        WindowsPrincipal = 2,
    }
}