本文整理汇总了C#中System.Runtime.InteropServices.SafeHandle.ReleaseHandle方法的典型用法代码示例。如果您正苦于以下问题:C# SafeHandle.ReleaseHandle方法的具体用法?C# SafeHandle.ReleaseHandle怎么用?C# SafeHandle.ReleaseHandle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Runtime.InteropServices.SafeHandle
的用法示例。
在下文中一共展示了SafeHandle.ReleaseHandle方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ReleaseHandle
[ReliabilityContract(Consistency.WillNotCorruptState, Cer.MayFail)]
override protected bool ReleaseHandle()
{
// Here, we must obey all rules for constrained execution regions.
return NativeMethods.CloseHandle(handle);
// If ReleaseHandle failed, it can be reported via the
// "releaseHandleFailed" managed debugging assistant (MDA). This
// MDA is disabled by default, but can be enabled in a debugger
// or during testing to diagnose handle corruption problems.
// We do not throw an exception because most code could not recover
// from the problem.
}