An object that represents the named system mutex.
The rights parameter must include the System.Security.AccessControl.MutexRights.Synchronize flag to allow threads to wait on the mutex, and the System.Security.AccessControl.MutexRights.Modify flag to allow threads to call the Mutex.ReleaseMutex method.
The erload:System.Threading.Mutex.OpenExisting method tries to open an existing named mutex. If the system mutex does not exist, this method throws an exception instead of creating the system object. To create the system mutex when it does not already exist, use one of the Mutex.#ctor(bool, string) constructors that has a name parameter.
Multiple calls to this method that use the same value for name do not necessarily return the same System.Threading.Mutex object, even though the objects that are returned represent the same named system mutex.
This method does not request ownership of the mutex.