namespace Vanara.PInvoke; /// Signals that a structure or class holds a HANDLE. public interface IHandle { /// Returns the value of the handle field. /// An IntPtr representing the value of the handle field. IntPtr DangerousGetHandle(); }