Files
niko 8fc35183db a
2026-04-11 22:19:20 +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: 0x02000325 RID: 805
[Token(Token = "0x2000325")]
[ComVisible(false)]
[TypeForwardedFrom("System, Version=2.0.0.0, Culture=Neutral, PublicKeyToken=b77a5c561934e089")]
[Serializable]
public class SemaphoreFullException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.SemaphoreFullException" /> class with default values.</summary>
// Token: 0x06001D6D RID: 7533 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001D6D")]
[Address(RVA = "0x29259F0", Offset = "0x29247F0", VA = "0x1829259F0")]
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: 0x06001D6E RID: 7534 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6001D6E")]
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
protected SemaphoreFullException(SerializationInfo info, StreamingContext context)
{
}
}
}