using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.Threading { /// The exception that is thrown when the method is called on a semaphore whose count is already at the maximum. // 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 { /// Initializes a new instance of the class with default values. // Token: 0x06001D6D RID: 7533 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6001D6D")] [Address(RVA = "0x29259F0", Offset = "0x29247F0", VA = "0x1829259F0")] public SemaphoreFullException() { } /// Initializes a new instance of the class with serialized data. /// The object that holds the serialized object data about the exception being thrown. /// The object that contains contextual information about the source or destination. // 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) { } } }