Vanara/Core/IHandle.cs

9 lines
302 B
C#
Raw Normal View History

namespace Vanara.PInvoke;
2023-05-13 22:16:32 -04:00
/// <summary>Signals that a structure or class holds a HANDLE.</summary>
public interface IHandle
{
/// <summary>Returns the value of the handle field.</summary>
/// <returns>An IntPtr representing the value of the handle field.</returns>
IntPtr DangerousGetHandle();
}