WindowsIdentity.IsGuest 属性

定义

获取一个值,该值指示系统是否将用户帐户标识为 Guest 帐户。

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

属性值

如果用户帐户是 Guest 帐户,则为 true;否则为 false

示例

以下代码演示如何使用 IsGuest 属性返回一个值,该值指示系统是否将用户帐户标识为 Guest 帐户。 此代码示例是为 WindowsIdentity 类提供的一个更大示例的一部分。

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

适用于