System.Threading.AbandonedMutexException
namespace System.Threading
{
public class AbandonedMutexException : SystemException
{
public Mutex Mutex { get; }
public int MutexIndex { get; }
public AbandonedMutexException();
public AbandonedMutexException(int location, WaitHandle handle);
protected AbandonedMutexException(SerializationInfo info, StreamingContext context);
public AbandonedMutexException(string message);
public AbandonedMutexException(string message, Exception inner);
public AbandonedMutexException(string message, Exception inner, int location, WaitHandle handle);
public AbandonedMutexException(string message, int location, WaitHandle handle);
}
}