This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,60 @@
using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Threading
{
/// <summary>The exception that is thrown when one thread acquires a <see cref="T:System.Threading.Mutex" /> object that another thread has abandoned by exiting without releasing it.</summary>
// Token: 0x0200032E RID: 814
[Token(Token = "0x200032E")]
[ComVisible(false)]
[Serializable]
public class AbandonedMutexException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.AbandonedMutexException" /> class with default values.</summary>
// Token: 0x06001F07 RID: 7943 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001F07")]
[Address(RVA = "0xF27BB0", Offset = "0xF26BB0", VA = "0x180F27BB0")]
public AbandonedMutexException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.AbandonedMutexException" /> class with a specified index for the abandoned mutex, if applicable, and a <see cref="T:System.Threading.Mutex" /> object that represents the mutex.</summary>
/// <param name="location">The index of the abandoned mutex in the array of wait handles if the exception is thrown for the <see cref="Overload:System.Threading.WaitHandle.WaitAny" /> method, or -1 if the exception is thrown for the <see cref="Overload:System.Threading.WaitHandle.WaitOne" /> or <see cref="Overload:System.Threading.WaitHandle.WaitAll" /> methods.</param>
/// <param name="handle">A <see cref="T:System.Threading.Mutex" /> object that represents the abandoned mutex.</param>
// 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)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.AbandonedMutexException" /> class with serialized data.</summary>
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains contextual information about the source or destination.</param>
// 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;
}
}