![Xcalibur Systems LLC Logo](../icons/logo.png) |
SecurityImpersonationLevel Enumeration |
The SECURITY_IMPERSONATION_LEVEL enumeration contains values that specify security
impersonation levels. Security impersonation levels govern the degree to which a server process
can act on behalf of a client process.
SECURITY_IMPERSONATION_LEVEL enumeration Namespace: Xcalibur.NativeMethods.V2.SecurityAssembly: Xcalibur.NativeMethods.V2 (in Xcalibur.NativeMethods.V2.dll) Version: 1.0.1.0
Syntaxpublic enum SecurityImpersonationLevel
Public Enumeration SecurityImpersonationLevel
public enum class SecurityImpersonationLevel
type SecurityImpersonationLevel
MembersMember name | Value | Description |
---|
SecurityAnonymous | 0 |
The server process cannot obtain identification information about the client, and it cannot
impersonate the client. It is defined with no value given, and thus, by ANSI C rules,
defaults to a value of zero.
|
SecurityIdentification | 1 |
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.
|
SecurityImpersonation | 2 |
The server process can impersonate the client's security context on its local system. The
server cannot impersonate the client on remote systems.
|
SecurityDelegation | 3 |
The server process can impersonate the client's security context on remote systems.
|
See Also