RPC_C_IMP_LEVEL Enumeration |
Specifies an impersonation level, which indicates the amount of authority given to the server when it is impersonating the client.
Namespace:
ShellBoost.Core.Utilities
Assembly:
ShellBoost.Core (in ShellBoost.Core.dll) Version: 1.8.3.0
Syntax public enum RPC_C_IMP_LEVEL
Members
| Member name | Value | Description |
---|
| RPC_C_IMP_LEVEL_DEFAULT | 0 |
DCOM can choose the impersonation level using its normal security blanket negotiation algorithm.
|
| RPC_C_IMP_LEVEL_ANONYMOUS | 1 |
The client is anonymous to the server. The server process can impersonate the client, but the impersonation token will not contain any information and cannot be used.
|
| RPC_C_IMP_LEVEL_IDENTIFY | 2 |
The server can obtain the client's identity. The server can impersonate the client for ACL checking, but it cannot access system objects as the client.
|
| RPC_C_IMP_LEVEL_IMPERSONATE | 3 |
The server process can impersonate the client's security context while acting on behalf of the client.
This level of impersonation can be used to access local resources such as files.
When impersonating at this level, the impersonation token can only be passed across one machine boundary.
The Schannel authentication service only supports this level of impersonation.
|
| RPC_C_IMP_LEVEL_DELEGATE | 4 |
The server process can impersonate the client's security context while acting on behalf of the client.
The server process can also make outgoing calls to other servers while acting on behalf of the client, using cloaking.
The server may use the client's security context on other machines to access local and remote resources as the client.
When impersonating at this level, the impersonation token can be passed across any number of computer boundaries.
|
See Also