SafeUnmanagedContextTStruct 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<TStruct> : SafeHandleZeroOrMinusOneIsInvalid
where TStruct : struct, new()
Inheritance
Object    CriticalFinalizerObject    SafeHandle    SafeHandleZeroOrMinusOneIsInvalid    SafeUnmanagedContextTStruct

Type Parameters

TStruct

[Missing <typeparam name="TStruct"/> documentation for "T:SysadminsLV.PKI.Structs.SafeUnmanagedContext`1"]

Constructors

SafeUnmanagedContextTStructInitializes a new instance of the SafeUnmanagedContextTStruct 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)
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