Process.LeaveDebugMode Method
.NET Framework 1.1
Takes a Process component out of the state that lets it interact with operating system processes that run in a special mode.
[Visual Basic] Public Shared Sub LeaveDebugMode() [C#] public static void LeaveDebugMode(); [C++] public: static void LeaveDebugMode(); [JScript] public static function LeaveDebugMode();
Remarks
Some operating system processes run in a special mode. Attempting to read properties of or attach to these processes is not possible unless you have called EnterDebugMode on the component. Call LeaveDebugMode when you no longer need access to these processes that run in special mode.
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
.NET Framework Security:
- SecurityPermission for calling any members of System.Diagnostic.Process with full trust. Associated enumeration: PermissionState.Unrestricted
See Also
Process Class | Process Members | System.Diagnostics Namespace | EnterDebugMode