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.
public sealed class SafeUnmanagedContext<TStruct> : SafeHandleZeroOrMinusOneIsInvalid
where TStruct : struct, new()
Public NotInheritable Class SafeUnmanagedContext(Of TStruct As {Structure, New})
Inherits SafeHandleZeroOrMinusOneIsInvalid
generic<typename TStruct>
where TStruct : value class, gcnew()
public ref class SafeUnmanagedContext sealed : public SafeHandleZeroOrMinusOneIsInvalid
[<SealedAttribute>]
type SafeUnmanagedContext<'TStruct when 'TStruct : struct, new()> =
class
inherit SafeHandleZeroOrMinusOneIsInvalid
end
[Missing <typeparam name="TStruct"/> documentation for "T:SysadminsLV.PKI.Structs.SafeUnmanagedContext`1"]
SafeUnmanagedContextTStruct | Initializes a new instance of the SafeUnmanagedContextTStruct class |
IsClosed | (Inherited from SafeHandle) |
IsInvalid | (Inherited from SafeHandleZeroOrMinusOneIsInvalid) |
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) |
SecurityPermission | The immediate caller must have SecurityPermission/UnmanagedCode to use this type. |