Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ User

SecurityIdentifier? System.Security.Principal.WindowsIdentity.User
get

Definition at line 208 of file WindowsIdentity.cs.

209 {
210 get
211 {
213 {
214 return null;
215 }
216 if (_user == null)
217 {
219 _user = new SecurityIdentifier(safeLocalAllocHandle.Read<IntPtr>(0uL));
220 }
221 return _user;
222 }
223 }
static SafeLocalAllocHandle GetTokenInformation(SafeAccessTokenHandle tokenHandle, TokenInformationClass tokenInformationClass, bool nullOnInvalidParam=false)