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
{
161
if
(
_safeTokenHandle
.
IsInvalid
)
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
}
Microsoft.Win32.SafeHandles.SafeAccessTokenHandle.IsInvalid
override bool IsInvalid
Definition
SafeAccessTokenHandle.cs:11
System.Security.Principal.WindowsIdentity.s_localSystemRid
static SecurityIdentifier s_localSystemRid
Definition
WindowsIdentity.cs:21
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