Files
Apr2020-Cpp2Il-Dump/mscorlib/System/Threading/WaitHandleCannotBeOpenedException.cs
niko 8fc35183db a
2026-04-11 22:19:20 +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: 0x02000346 RID: 838
[Token(Token = "0x2000346")]
[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: 0x06001E47 RID: 7751 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001E47")]
[Address(RVA = "0x1DB75C0", Offset = "0x1DB63C0", VA = "0x181DB75C0")]
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: 0x06001E48 RID: 7752 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001E48")]
[Address(RVA = "0x1DB7590", Offset = "0x1DB6390", VA = "0x181DB7590")]
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: 0x06001E49 RID: 7753 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001E49")]
[Address(RVA = "0x700790", Offset = "0x6FF590", VA = "0x180700790")]
protected WaitHandleCannotBeOpenedException(SerializationInfo info, StreamingContext context)
{
}
}
}