Condividi tramite


WindowsIdentity.IsGuest Proprietà

Definizione

Ottiene un valore che indica se l'account utente è identificato dal sistema come account Guest.

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

Valore della proprietà

true se l'account utente è un account Guest; in caso contrario, false.

Esempio

Il codice seguente mostra l'uso della IsGuest proprietà per restituire un valore che indica se l'account utente viene identificato come Guest account dal sistema. Questo esempio di codice fa parte di un esempio più grande fornito per la WindowsIdentity classe.

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

Si applica a