Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Environment::UserInteractive Property

 

Gets a value indicating whether the current process is running in user interactive mode.

Namespace:   System
Assembly:  mscorlib (in mscorlib.dll)

public:
property bool UserInteractive {
	static bool get();
}

Property Value

Type: System::Boolean

true if the current process is running in user interactive mode; otherwise, false.

The UserInteractive property reports false for a Windows process or a service like IIS that runs without a user interface. If this property is false, do not display modal dialogs or message boxes because there is no graphical user interface for the user to interact with.

The following example displays whether the current process is running in user interactive mode.

// 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
*/

.NET Framework
Available since 1.1
Return to top
Show: