Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/Threading/WaitHandleCannotBeOpenedException.cs
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

43 lines
2.1 KiB
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Threading
{
/// <summary>The exception that is thrown when an attempt is made to open a system mutex, semaphore, or event wait handle that does not exist.</summary>
// Token: 0x02000360 RID: 864
[Token(Token = "0x2000360")]
[ComVisible(false)]
[Serializable]
public class WaitHandleCannotBeOpenedException : ApplicationException
{
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.WaitHandleCannotBeOpenedException" /> class with default values.</summary>
// Token: 0x06002049 RID: 8265 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002049")]
[Address(RVA = "0xF85380", Offset = "0xF84380", VA = "0x180F85380")]
public WaitHandleCannotBeOpenedException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.WaitHandleCannotBeOpenedException" /> class with a specified error message.</summary>
/// <param name="message">The error message that explains the reason for the exception.</param>
// Token: 0x0600204A RID: 8266 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600204A")]
[Address(RVA = "0xF85350", Offset = "0xF84350", VA = "0x180F85350")]
public WaitHandleCannotBeOpenedException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.WaitHandleCannotBeOpenedException" /> 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: 0x0600204B RID: 8267 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600204B")]
[Address(RVA = "0xF853E0", Offset = "0xF843E0", VA = "0x180F853E0")]
protected WaitHandleCannotBeOpenedException(SerializationInfo info, StreamingContext context)
{
}
}
}