C# class for supporting named event objects

B

Brian Muth

need to do some simple IPC between C# applications, and a named event
object (e.g. CreateEventEx) would fit the bill. I see that System.Threading
has Mutex and Semphore classes, but the ManualResetEvent class appears local
to the process only.

Is there a C# class that supports named event objects?
 
J

Jeroen Mostert

Brian said:
need to do some simple IPC between C# applications, and a named event
object (e.g. CreateEventEx) would fit the bill. I see that System.Threading
has Mutex and Semphore classes, but the ManualResetEvent class appears
local
to the process only.

Is there a C# class that supports named event objects?
EventWaitHandle.

I don't know why its derived classes don't export constructors that will
allow you to name the event, but there you go.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top