named events in C# - do they exist?

  • Thread starter Thread starter Brian Muth
  • Start date Start date
B

Brian Muth

I 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?
 
Back
Top