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

◆ IsSystem

virtual bool System.Security.Principal.WindowsIdentity.IsSystem
get

Definition at line 157 of file WindowsIdentity.cs.

158 {
159 get
160 {
162 {
163 return false;
164 }
165 if ((object)s_localSystemRid == null)
166 {
167 s_localSystemRid = new SecurityIdentifier(IdentifierAuthority.NTAuthority, new int[1] { 18 });
168 }
169 return User == s_localSystemRid;
170 }
171 }
static SecurityIdentifier s_localSystemRid