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: 0x020000E2 RID: 226
|
|
[Token(Token = "0x20000E2")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public class DuplicateWaitObjectException : ArgumentException
|
|
{
|
|
// Token: 0x170000C7 RID: 199
|
|
// (get) Token: 0x06000877 RID: 2167 RVA: 0x00002082 File Offset: 0x00000282
|
|
[Token(Token = "0x170000C7")]
|
|
private static string DuplicateWaitObjectMessage
|
|
{
|
|
[Token(Token = "0x6000877")]
|
|
[Address(RVA = "0x71BED0", Offset = "0x71AED0", VA = "0x18071BED0")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.DuplicateWaitObjectException" /> class.</summary>
|
|
// Token: 0x06000878 RID: 2168 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000878")]
|
|
[Address(RVA = "0x71BE10", Offset = "0x71AE10", VA = "0x18071BE10")]
|
|
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: 0x06000879 RID: 2169 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000879")]
|
|
[Address(RVA = "0x71BEB0", Offset = "0x71AEB0", VA = "0x18071BEB0")]
|
|
protected DuplicateWaitObjectException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
|
|
// Token: 0x04000348 RID: 840
|
|
[Token(Token = "0x4000348")]
|
|
private static string _duplicateWaitObjectMessage;
|
|
}
|
|
}
|