File: system\security\principal\tokenimpersonationlevel.cs | |
Project: ndp\clr\src\bcl\mscorlib.csproj (mscorlib) |
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // <OWNER>ShawnFa</OWNER> // 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 } } |