如何在 C# 中创建命名的 autoresetevent?

发布于 12-07 07:17 字数 209 浏览 0 评论 0原文

我需要使用命名事件来同步两个应用程序。但 AutoResetEvent 和 ManualResetEvent 都不包含具有事件名称的构造函数(仅初始状态)。我可以通过 AutoResetEvent 或 ManualResetEvent 类中的静态方法 OpenExisting 打开现有的命名事件,但无法创建它!我不想使用本机 WinAPI CreateEvent 函数,除非我确切地知道不存在其他方法。

I need to synchronize two applications by using a named event. But neither AutoResetEvent nor ManualResetEvent contains constructor with a name for event (only initial state). I can open existing named event through static method OpenExisting in AutoResetEvent or ManualResetEvent class, but can't create It! I don't want to use native WinAPI CreateEvent function for It, unless I know precisely of not existing of other ways.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

回忆那么伤2024-12-14 07:17:24

我自己找到了解决方案。那是:

EventWaitHandle handle = 
    new EventWaitHandle(false, EventResetMode.ManualReset, "testRemoteServer");

I found a solution by myself. That is:

EventWaitHandle handle = 
    new EventWaitHandle(false, EventResetMode.ManualReset, "testRemoteServer");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文