如何将 IntPtr 转换为 SafeHandle?

How to convert IntPtr to SafeHandle?

我有 C# Windows 服务 class:

class MyService : ServiceBase
{
    private void InitializeComponent() {
       //some other code ...
       SafeHandle sHandle = this.ServiceHandle; // I want to do this but this fails.
       SetServiceObjectSecurity(sHandle, secInfo, binaryDescriptor);
       //some more code ...
    }
}

如何将 IntPtr(如 this.ServiceHandle)转换为 "System.Runtime.InteropServices.SafeHandle"?以便我可以在函数调用 "SetServiceObjectSecurity()" 中使用它? 我的最终目标是授予服务管理员权限。

您是否已按照此处 https://msdn.microsoft.com/de-de/library/system.runtime.interopservices.safehandle.sethandle(v=vs.110).aspx 的说明尝试使用 SafeHandle.SetHandle(IntPtr handle) 并查看是否适合您?

编辑: 由于 SafeHandle.SetHandle(IntPtr handle) 是一个受保护的方法,您可以像这样创建派生的 class:

public class SafeHandleExtended : SafeHandle
{
    public void SetHandleExtended(IntPtr handle)
    {
        this.SetHandle(handle);
    }

    // .. SafeHandle's abstract methods etc. that you need to implement
}

虽然我没有测试过它的正确性,所以我不知道它是否按照你想要的方式工作。