Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

36 lines
1.7 KiB
C#

using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Threading
{
/// <summary>The exception that is thrown when the <see cref="Overload:System.Threading.Semaphore.Release" /> method is called on a semaphore whose count is already at the maximum.</summary>
// Token: 0x0200033F RID: 831
[Token(Token = "0x200033F")]
[TypeForwardedFrom("System, Version=2.0.0.0, Culture=Neutral, PublicKeyToken=b77a5c561934e089")]
[ComVisible(false)]
[Serializable]
public class SemaphoreFullException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.SemaphoreFullException" /> class with default values.</summary>
// Token: 0x06001F6F RID: 8047 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001F6F")]
[Address(RVA = "0xB43BA0", Offset = "0xB42BA0", VA = "0x180B43BA0")]
public SemaphoreFullException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.SemaphoreFullException" /> 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: 0x06001F70 RID: 8048 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001F70")]
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
protected SemaphoreFullException(SerializationInfo info, StreamingContext context)
{
}
}
}