我有C#Windows服务类:
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)
是受保护的方法,因此您可以创建如下的派生类:
public class SafeHandleExtended : SafeHandle
{
public void SetHandleExtended(IntPtr handle)
{
this.SetHandle(handle);
}
// .. SafeHandle's abstract methods etc. that you need to implement
}
尽管我尚未测试它的正确性,但是我不知道这是否可以按照您希望的方式工作。
关于c# - 怎么把IntPtr转换成SafeHandle?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43388912/