Environment.UserInteractive Vlastnost
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Získá hodnotu označující, zda je aktuální proces spuštěn v interaktivním režimu uživatele.
public:
static property bool UserInteractive { bool get(); };
public static bool UserInteractive { get; }
member this.UserInteractive : bool
Public Shared ReadOnly Property UserInteractive As Boolean
Hodnota vlastnosti
true
pokud je aktuální proces spuštěn v interaktivním režimu uživatele; false
v opačném případě .
Příklady
Následující příklad ukazuje, jestli je aktuální proces spuštěný v interaktivním režimu uživatele.
// Sample for the Environment::UserInteractive property
using namespace System;
int main()
{
Console::WriteLine();
Console::WriteLine( "UserInteractive: {0}", Environment::UserInteractive );
}
/*
This example produces the following results:
UserInteractive: True
*/
// Sample for the Environment.UserInteractive property
using System;
class Sample
{
public static void Main()
{
Console.WriteLine();
Console.WriteLine("UserInteractive: {0}", Environment.UserInteractive);
}
}
/*
This example produces the following results:
UserInteractive: True
*/
// Sample for the Environment.UserInteractive property
open System
printfn $"\nUserInteractive: {Environment.UserInteractive}"
// This example produces the following results:
// UserInteractive: True
' Sample for the Environment.UserInteractive property
Class Sample
Public Shared Sub Main()
Console.WriteLine()
Console.WriteLine("UserInteractive: {0}", Environment.UserInteractive)
End Sub
End Class
'
'This example produces the following results:
'
'UserInteractive: True
'
Poznámky
Sestavy UserInteractive false
vlastností pro proces Windows nebo službu, jako je služba IIS, která běží bez uživatelského rozhraní. Pokud je false
tato vlastnost , nezobrazovat modální dialogy nebo zprávy, protože neexistuje grafické uživatelské rozhraní pro interakci uživatele.