SafeProcessHandle Constructor (IntPtr, Boolean)

.NET Framework (current version)
 

Initializes a new instance of the SafeProcessHandle class from the specified handle, indicating whether to release the handle during the finalization phase.

Namespace:   Microsoft.Win32.SafeHandles
Assembly:  System (in System.dll)

public:
SafeProcessHandle(
	IntPtr existingHandle,
	bool ownsHandle
)

Parameters

existingHandle
Type: System::IntPtr

The handle to be wrapped.

ownsHandle
Type: System::Boolean

true to reliably let SafeProcessHandle release the handle during the finalization phase; otherwise, false.

System_CAPS_importantImportant

This type implements the IDisposable interface. When you have finished using the type, you should dispose of it either directly or indirectly. To dispose of the type directly, call its Dispose method in a try/catch block. To dispose of it indirectly, use a language construct such as using (in C#) or Using (in Visual Basic). For more information, see the “Using an Object that Implements IDisposable” section in the IDisposable interface topic.

.NET Framework
Available since 4.6
Return to top
Show: