CriticalHandle Class
Represents a wrapper class for handle resources.
System.Runtime.ConstrainedExecution.CriticalFinalizerObject
System.Runtime.InteropServices.CriticalHandle
Microsoft.Win32.SafeHandles.CriticalHandleMinusOneIsInvalid
Microsoft.Win32.SafeHandles.CriticalHandleZeroOrMinusOneIsInvalid
Assembly: mscorlib (in mscorlib.dll)
The CriticalHandle type exposes the following members.
Name | Description | |
---|---|---|
![]() | CriticalHandle | Initializes a new instance of the CriticalHandle class with the specified invalid handle value. |
Name | Description | |
---|---|---|
![]() | Close | Marks the handle for releasing and freeing resources. |
![]() | Dispose() | Releases all resources used by the CriticalHandle. |
![]() | Dispose(Boolean) | Releases the unmanaged resources used by the CriticalHandle class specifying whether to perform a normal dispose operation. |
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Frees all resources associated with the handle. (Overrides CriticalFinalizerObject.Finalize().) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ReleaseHandle | When overridden in a derived class, executes the code required to free the handle. |
![]() | SetHandle | Sets the handle to the specified pre-existing handle. |
![]() | SetHandleAsInvalid | Marks a handle as invalid. |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
The CriticalHandle class is similar to the SafeHandle class, except that SafeHandle implements reference counting. You can use CriticalHandle instead of SafeHandle to address performance considerations when you can provide the necessary synchronization more efficiently yourself.
Because the CriticalHandle class does not perform reference counting, it does not provide protection from handle recycling security attacks. Because the reference counting algorithm implicitly serializes operations, a certain amount of thread safety is also lost. If you call the IDisposable.Dispose or Close method while an operation that is using the handle is outstanding on another thread, or if you call IDisposable.Dispose or Close from two threads at the same time, the results are non-deterministic. The CriticalHandle class still provides the guaranteed critical finalization provided by the CriticalFinalizerObject class.
- InheritanceDemand
for full trust for inheritors. This member cannot be inherited by partially trusted code.
- SecurityCriticalAttribute
requires full trust for the immediate caller. This class cannot be used by partially trusted or transparent code.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.