TOKEN_LINKED_TOKEN structure
Applies to: desktop apps only
The TOKEN_LINKED_TOKEN structure contains a handle to a token. This token is linked to the token being queried by the GetTokenInformation function or set by the SetTokenInformation function.
Syntax
typedef struct _TOKEN_LINKED_TOKEN {
HANDLE LinkedToken;
} TOKEN_LINKED_TOKEN, *PTOKEN_LINKED_TOKEN;
Members
- LinkedToken
-
A handle to the linked token.
When you have finished using the handle, close it by calling the CloseHandle function.
Requirements
|
Minimum supported client | Windows Vista |
|---|---|
|
Minimum supported server | Windows Server 2008 |
|
Header |
|
Send comments about this topic to Microsoft
Build date: 3/7/2012
If SE_TCB_NAME privilege is enabled, behavior is different
The token returned by this function differs depending on whether or not the SE_TCB_NAME privilege is enabled when the call to GetTokenInformation() is made. If SE_TCB_NAME privilege is enabled, the resulting token will be a primary token. If SE_TCB_NAME is not enabled, the token will be an impersonation token, with impersonationlevel Identification.
- 6/22/2011
- Joseph Galbraith