using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Security.Principal
{
/// Defines security impersonation levels. Security impersonation levels govern the degree to which a server process can act on behalf of a client process.
// Token: 0x020003C7 RID: 967
[Token(Token = "0x20003C7")]
[ComVisible(true)]
[Serializable]
public enum TokenImpersonationLevel
{
/// The server process cannot obtain identification information about the client, and it cannot impersonate the client.
// Token: 0x040012D9 RID: 4825
[Token(Token = "0x40012D9")]
Anonymous = 1,
/// The server process can impersonate the client's security context on remote systems.
// Token: 0x040012DA RID: 4826
[Token(Token = "0x40012DA")]
Delegation = 4,
/// The server process can obtain information about the client, such as security identifiers and privileges, but it cannot impersonate the client. This is useful for servers that export their own objects, for example, database products that export tables and views. Using the retrieved client-security information, the server can make access-validation decisions without being able to use other services that are using the client's security context.
// Token: 0x040012DB RID: 4827
[Token(Token = "0x40012DB")]
Identification = 2,
/// The server process can impersonate the client's security context on its local system. The server cannot impersonate the client on remote systems.
// Token: 0x040012DC RID: 4828
[Token(Token = "0x40012DC")]
Impersonation,
/// An impersonation level is not assigned.
// Token: 0x040012DD RID: 4829
[Token(Token = "0x40012DD")]
None = 0
}
}