-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDotNetSecurity.cs
More file actions
48 lines (41 loc) · 1.22 KB
/
DotNetSecurity.cs
File metadata and controls
48 lines (41 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//*****************************************************************************
//* Code Factory SDK
//* Copyright (c) 2020 CodeFactory, LLC
//*****************************************************************************
namespace CodeFactory.DotNet
{
/// <summary>
/// Enumeration of the security scope the target .net model is set to.
/// </summary>
public enum DotNetSecurity
{
/// <summary>
/// Security is set to public access
/// </summary>
Public = 0,
/// <summary>
/// Security is set to protected access
/// </summary>
Protected = 1,
/// <summary>
/// Security is set to internal access
/// </summary>
Internal = 2,
/// <summary>
/// Security is set to private access
/// </summary>
Private = 3,
/// <summary>
/// Security is set to protected internal access
/// </summary>
ProtectedInternal = 4,
/// <summary>
/// Security is set to projected or internal access
/// </summary>
ProtectedOrInternal = 5,
/// <summary>
/// Security scope is unknown
/// </summary>
Unknown = 9999
}
}