43 lines
2.0 KiB
C#
43 lines
2.0 KiB
C#
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: 0x0200035D RID: 861
|
|
[Token(Token = "0x200035D")]
|
|
[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: 0x06002029 RID: 8233 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6002029")]
|
|
[Address(RVA = "0xB54690", Offset = "0xB53690", VA = "0x180B54690")]
|
|
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: 0x0600202A RID: 8234 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600202A")]
|
|
[Address(RVA = "0xB546F0", Offset = "0xB536F0", VA = "0x180B546F0")]
|
|
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: 0x0600202B RID: 8235 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600202B")]
|
|
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
|
|
protected ThreadStateException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|