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

◆ IsAnonymous

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

Definition at line 173 of file WindowsIdentity.cs.

174 {
175 get
176 {
178 {
179 return true;
180 }
181 if ((object)s_anonymousRid == null)
182 {
183 s_anonymousRid = new SecurityIdentifier(IdentifierAuthority.NTAuthority, new int[1] { 7 });
184 }
185 return User == s_anonymousRid;
186 }
187 }