WindowsIdentity.IsSystem Property

Definition

Gets a value indicating whether the user account is identified as a System account by the system.

public:
 virtual property bool IsSystem { bool get(); };
public virtual bool IsSystem { get; }
member this.IsSystem : bool
Public Overridable ReadOnly Property IsSystem As Boolean

Property Value

true if the user account is a System account; otherwise, false.

Examples

The following code shows the use of the IsSystem property to return a value indicating whether the user account is identified as a System account by the system. This code example is part of a larger example provided for the WindowsIdentity class.

if ( windowsIdentity->IsSystem )
{
   propertyDescription = String::Concat( propertyDescription, ", is a System account" );
}
if (windowsIdentity.IsSystem)
{
    propertyDescription += ", is a System account";
}
If (windowsIdentity.IsSystem) Then
    propertyDescription += ", is a System account"
End If

Applies to