oh dear
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Runtime.Serialization;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Threading
|
||||
{
|
||||
/// <summary>The exception that is thrown when a <see cref="T:System.Threading.Thread" /> is in an invalid <see cref="P:System.Threading.Thread.ThreadState" /> for the method call.</summary>
|
||||
// Token: 0x02000343 RID: 835
|
||||
[Token(Token = "0x2000343")]
|
||||
[ComVisible(true)]
|
||||
[Serializable]
|
||||
public class ThreadStateException : SystemException
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.ThreadStateException" /> class with default properties.</summary>
|
||||
// Token: 0x06001E27 RID: 7719 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001E27")]
|
||||
[Address(RVA = "0x1DA9580", Offset = "0x1DA8380", VA = "0x181DA9580")]
|
||||
public ThreadStateException()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.ThreadStateException" /> class with a specified error message.</summary>
|
||||
/// <param name="message">The error message that explains the reason for the exception.</param>
|
||||
// Token: 0x06001E28 RID: 7720 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001E28")]
|
||||
[Address(RVA = "0x1DA95E0", Offset = "0x1DA83E0", VA = "0x181DA95E0")]
|
||||
public ThreadStateException(string message)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Threading.ThreadStateException" /> class with serialized data.</summary>
|
||||
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
|
||||
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
|
||||
// Token: 0x06001E29 RID: 7721 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x6001E29")]
|
||||
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
|
||||
protected ThreadStateException(SerializationInfo info, StreamingContext context)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user