SafeUnmanagedContext Class

SafeUnmanagedContext provides a SafeHandle class for an unmanaged buffer. This can be used instead of the raw IntPtr to avoid races with the garbage collector, ensuring that the buffer object is not cleaned up from underneath you while you are still using the handle pointer.

Definition

Namespace: SysadminsLV.PKI.Structs
Assembly: SysadminsLV.PKI.Win (in SysadminsLV.PKI.Win.dll) Version: 4.3.0+a868daf3196ed1ac6592e4f3e5cd2b429fc81eaa
C#
public sealed class SafeUnmanagedContext : SafeHandleZeroOrMinusOneIsInvalid
Inheritance
Object    CriticalFinalizerObject    SafeHandle    SafeHandleZeroOrMinusOneIsInvalid    SafeUnmanagedContext

Constructors

SafeUnmanagedContextInitializes a new instance of the SafeUnmanagedContext class

Properties

Methods

Close
(Inherited from SafeHandle)
DangerousAddRef
(Inherited from SafeHandle)
DangerousGetHandle
(Inherited from SafeHandle)
DangerousRelease
(Inherited from SafeHandle)
Dispose
(Inherited from SafeHandle)
Equals
(Inherited from Object)
GetEmpty 
GetHashCode
(Inherited from Object)
GetType
(Inherited from Object)
SetHandleAsInvalid
(Inherited from SafeHandle)
ToString
(Inherited from Object)

.NET Framework Security

SecurityPermission The immediate caller must have SecurityPermission/UnmanagedCode to use this type.

See Also