Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than advapi32, prefix the name with the module name and a period.
DuplicateToken (advapi32)
.
C# Signature:
[DllImport("advapi32.dll", SetLastError=true)]
public extern static bool DuplicateToken(IntPtr ExistingTokenHandle, int
SECURITY_IMPERSONATION_LEVEL, out IntPtr DuplicateTokenHandle);
VB .NET Signature:
Declare Function DuplicateToken Lib "advapi32.dll" (ExistingTokenHandle As IntPtr, _
SECURITY_IMPERSONATION_LEVEL As Int16, ByRef DuplicateTokenHandle As IntPtr) _
As Boolean
VB .NET User-Defined Types:
Public Enum SecurityImpersonationLevel As Integer
'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.
SecurityAnonymous = 0
'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.
SecurityIdentification = 1
'The server process can impersonate the client's security context on its local system.
'The server cannot impersonate the client on remote systems.
SecurityImpersonation = 2
'The server process can impersonate the client's security context on remote systems.
'NOTE: Windows NT: This impersonation level is not supported.
SecurityDelegation = 3
End Enum
C# User Defined Types:
public enum SecurityImpersonationLevel : int
{
/// <summary>
/// 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.
/// </summary>
SecurityAnonymous = 0,
/// <summary>
/// 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.
/// </summary>
SecurityIdentification = 1,
/// <summary>
/// The server process can impersonate the client's security context on its local system.
/// The server cannot impersonate the client on remote systems.
/// </summary>
SecurityImpersonation = 2,
/// <summary>
/// The server process can impersonate the client's security context on remote systems.
/// NOTE: Windows NT: This impersonation level is not supported.
/// </summary>
SecurityDelegation = 3,
}
Notes:
None.
Tips & Tricks:
Please add some!
Sample Code:
Please add some!
Alternative Managed API:
TODO
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).