本文整理汇总了C#中Microsoft.Win32.SafeHandles.SafeWaitHandle类的典型用法代码示例。如果您正苦于以下问题:C# SafeWaitHandle类的具体用法?C# SafeWaitHandle怎么用?C# SafeWaitHandle使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
SafeWaitHandle类属于Microsoft.Win32.SafeHandles命名空间,在下文中一共展示了SafeWaitHandle类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。
示例1: Main
//引入命名空间
using System;
using Microsoft.Win32.SafeHandles;
using System.Runtime.InteropServices;
class SafeHandlesExample
{
static void Main()
{
UnmanagedMutex uMutex = new UnmanagedMutex("YourCompanyName_SafeHandlesExample_MUTEX");
try
{
uMutex.Create();
Console.WriteLine("Mutex created. Press Enter to release it.");
Console.ReadLine();
}
catch (Exception e)
{
Console.WriteLine(e);
}
finally
{
uMutex.Release();
Console.WriteLine("Mutex Released.");
}
Console.ReadLine();
}
}
class UnmanagedMutex
{
// Use interop to call the CreateMutex function.
// For more information about CreateMutex,
// see the unmanaged MSDN reference library.
[DllImport("kernel32.dll", CharSet=CharSet.Unicode)]
static extern SafeWaitHandle CreateMutex(IntPtr lpMutexAttributes, bool bInitialOwner,
string lpName);
// Use interop to call the ReleaseMutex function.
// For more information about ReleaseMutex,
// see the unmanaged MSDN reference library.
[DllImport("kernel32.dll")]
public static extern bool ReleaseMutex(SafeWaitHandle hMutex);
private SafeWaitHandle handleValue = null;
private IntPtr mutexAttrValue = IntPtr.Zero;
private string nameValue = null;
public UnmanagedMutex(string Name)
{
nameValue = Name;
}
public void Create()
{
if (nameValue == null && nameValue.Length == 0)
{
throw new ArgumentNullException("nameValue");
}
handleValue = CreateMutex(mutexAttrValue,
true, nameValue);
// If the handle is invalid,
// get the last Win32 error
// and throw a Win32Exception.
if (handleValue.IsInvalid)
{
Marshal.ThrowExceptionForHR(Marshal.GetHRForLastWin32Error());
}
}
public SafeWaitHandle Handle
{
get
{
// If the handle is valid,
// return it.
if (!handleValue.IsInvalid)
{
return handleValue;
}
else
{
return null;
}
}
}
public string Name
{
get
{
return nameValue;
}
}
public void Release()
{
ReleaseMutex(handleValue);
}
}
开发者ID:.NET开发者,项目名称:Microsoft.Win32.SafeHandles,代码行数:107,代码来源:SafeWaitHandle
注:本文中的Microsoft.Win32.SafeHandles.SafeWaitHandle类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论