using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Threading
{
/// The exception that is thrown when one thread acquires a object that another thread has abandoned by exiting without releasing it.
// Token: 0x0200032E RID: 814
[Token(Token = "0x200032E")]
[ComVisible(false)]
[Serializable]
public class AbandonedMutexException : SystemException
{
/// Initializes a new instance of the class with default values.
// Token: 0x06001F07 RID: 7943 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001F07")]
[Address(RVA = "0xF27BB0", Offset = "0xF26BB0", VA = "0x180F27BB0")]
public AbandonedMutexException()
{
}
/// Initializes a new instance of the class with a specified index for the abandoned mutex, if applicable, and a object that represents the mutex.
/// The index of the abandoned mutex in the array of wait handles if the exception is thrown for the method, or -1 if the exception is thrown for the or methods.
/// A object that represents the abandoned mutex.
// Token: 0x06001F08 RID: 7944 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001F08")]
[Address(RVA = "0xF27AC0", Offset = "0xF26AC0", VA = "0x180F27AC0")]
public AbandonedMutexException(int location, WaitHandle handle)
{
}
// Token: 0x06001F09 RID: 7945 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001F09")]
[Address(RVA = "0xF27A50", Offset = "0xF26A50", VA = "0x180F27A50")]
private void SetupException(int location, WaitHandle handle)
{
}
/// Initializes a new instance of the class with serialized data.
/// The object that holds the serialized object data about the exception being thrown.
/// The object that contains contextual information about the source or destination.
// Token: 0x06001F0A RID: 7946 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001F0A")]
[Address(RVA = "0xF27B80", Offset = "0xF26B80", VA = "0x180F27B80")]
protected AbandonedMutexException(SerializationInfo info, StreamingContext context)
{
}
// Token: 0x0400115F RID: 4447
[global::Cpp2IlInjected.FieldOffset(Offset = "0x88")]
[Token(Token = "0x400115F")]
private int m_MutexIndex;
// Token: 0x04001160 RID: 4448
[global::Cpp2IlInjected.FieldOffset(Offset = "0x90")]
[Token(Token = "0x4001160")]
private Mutex m_Mutex;
}
}