Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 478 Bytes

gettokeninformation.md

File metadata and controls

14 lines (12 loc) · 478 Bytes

GetTokenInformation

[DllImport("ADVAPI32.dll", ExactSpelling = true, SetLastError = true)]
[DefaultDllImportSearchPaths(DllImportSearchPath.System32)]
public static extern unsafe BOOL GetTokenInformation(
    HANDLE TokenHandle,
    TOKEN_INFORMATION_CLASS TokenInformationClass,
    [Optional] void* TokenInformation,
    uint TokenInformationLength,
    uint* ReturnLength);

token_information_class.md