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
{
177
if
(
_safeTokenHandle
.
IsInvalid
)
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
}
Microsoft.Win32.SafeHandles.SafeAccessTokenHandle.IsInvalid
override bool IsInvalid
Definition
SafeAccessTokenHandle.cs:11
System.Security.Principal.WindowsIdentity.s_anonymousRid
static SecurityIdentifier s_anonymousRid
Definition
WindowsIdentity.cs:23
System.Security.Principal.WindowsIdentity._safeTokenHandle
SafeAccessTokenHandle _safeTokenHandle
Definition
WindowsIdentity.cs:33
System.Security.Principal.WindowsIdentity.User
SecurityIdentifier? User
Definition
WindowsIdentity.cs:209
System
Security
Principal
WindowsIdentity
Generated by
1.10.0