summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Security/Principal/TokenImpersonationLevel.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/Security/Principal/TokenImpersonationLevel.cs')
-rw-r--r--src/mscorlib/src/System/Security/Principal/TokenImpersonationLevel.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/mscorlib/src/System/Security/Principal/TokenImpersonationLevel.cs b/src/mscorlib/src/System/Security/Principal/TokenImpersonationLevel.cs
new file mode 100644
index 0000000000..bd3d98e51f
--- /dev/null
+++ b/src/mscorlib/src/System/Security/Principal/TokenImpersonationLevel.cs
@@ -0,0 +1,19 @@
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+
+//
+
+namespace System.Security.Principal
+{
+#if !FEATURE_CORECLR
+ [Serializable]
+ [System.Runtime.InteropServices.ComVisible(true)]
+#endif
+ public enum TokenImpersonationLevel {
+ None = 0,
+ Anonymous = 1,
+ Identification = 2,
+ Impersonation = 3,
+ Delegation = 4
+ }
+} \ No newline at end of file