SafeProcessHandle Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SafeProcessHandle() |
Creates a SafeProcessHandle. |
SafeProcessHandle(IntPtr, Boolean) |
Initializes a new instance of the SafeProcessHandle class from the specified handle, indicating whether to release the handle during the finalization phase. |
SafeProcessHandle()
- Source:
- SafeProcessHandle.cs
- Source:
- SafeProcessHandle.cs
- Source:
- SafeProcessHandle.cs
Creates a SafeProcessHandle.
public:
SafeProcessHandle();
public SafeProcessHandle ();
Public Sub New ()
Applies to
SafeProcessHandle(IntPtr, Boolean)
- Source:
- SafeProcessHandle.cs
- Source:
- SafeProcessHandle.cs
- Source:
- SafeProcessHandle.cs
Initializes a new instance of the SafeProcessHandle class from the specified handle, indicating whether to release the handle during the finalization phase.
public:
SafeProcessHandle(IntPtr existingHandle, bool ownsHandle);
public SafeProcessHandle (IntPtr existingHandle, bool ownsHandle);
new Microsoft.Win32.SafeHandles.SafeProcessHandle : nativeint * bool -> Microsoft.Win32.SafeHandles.SafeProcessHandle
Public Sub New (existingHandle As IntPtr, ownsHandle As Boolean)
Parameters
- existingHandle
-
IntPtr
nativeint
The handle to be wrapped.
- ownsHandle
- Boolean
true
to reliably let SafeProcessHandle release the handle during the finalization phase; otherwise, false
.
Remarks
Important
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.