51 lines
1.8 KiB
C#
51 lines
1.8 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Runtime.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System
|
|
{
|
|
/// <summary>The exception that is thrown when an object appears more than once in an array of synchronization objects.</summary>
|
|
// Token: 0x020000DB RID: 219
|
|
[Token(Token = "0x20000DB")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public class DuplicateWaitObjectException : ArgumentException
|
|
{
|
|
// Token: 0x170000C2 RID: 194
|
|
// (get) Token: 0x0600084D RID: 2125 RVA: 0x00002082 File Offset: 0x00000282
|
|
[Token(Token = "0x170000C2")]
|
|
private static string DuplicateWaitObjectMessage
|
|
{
|
|
[Token(Token = "0x600084D")]
|
|
[Address(RVA = "0x1E8C390", Offset = "0x1E8B190", VA = "0x181E8C390")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.DuplicateWaitObjectException" /> class.</summary>
|
|
// Token: 0x0600084E RID: 2126 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600084E")]
|
|
[Address(RVA = "0x1E8C2F0", Offset = "0x1E8B0F0", VA = "0x181E8C2F0")]
|
|
public DuplicateWaitObjectException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.DuplicateWaitObjectException" /> class with serialized data.</summary>
|
|
/// <param name="info">The object that holds the serialized object data.</param>
|
|
/// <param name="context">The contextual information about the source or destination.</param>
|
|
// Token: 0x0600084F RID: 2127 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600084F")]
|
|
[Address(RVA = "0x4EF7B0", Offset = "0x4EE5B0", VA = "0x1804EF7B0")]
|
|
protected DuplicateWaitObjectException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
|
|
// Token: 0x0400033E RID: 830
|
|
[Token(Token = "0x400033E")]
|
|
private static string _duplicateWaitObjectMessage;
|
|
}
|
|
}
|