when creating a named EventWaitHandle in each process you can specifiy in which state it should be.
Now this somehow contradicts the assumption that the EventWaitHandle is usable for IPC as another process might have set the state to “signalled” whereas I (when creating the EventWaitHandle) can set it to “not signalled”.
Any ideas?
thanks,
Chris
Did you read the documentation?
From the page:
If that is the constructor you’re using, then the documentation for thaf constructor indicates that the
initialStateflag is only used when your call creates the event.