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

適用対象