51 lines
2.6 KiB
C#
51 lines
2.6 KiB
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.ComponentModel
|
|
{
|
|
/// <summary>Thrown when a thread on which an operation should execute no longer exists or has no message loop.</summary>
|
|
// Token: 0x02000150 RID: 336
|
|
[Token(Token = "0x2000150")]
|
|
[Serializable]
|
|
public class InvalidAsynchronousStateException : ArgumentException
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.InvalidAsynchronousStateException" /> class.</summary>
|
|
// Token: 0x06000816 RID: 2070 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000816")]
|
|
[Address(RVA = "0x4EF7E0", Offset = "0x4EE5E0", VA = "0x1804EF7E0")]
|
|
public InvalidAsynchronousStateException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.InvalidAsynchronousStateException" /> class with the specified detailed description.</summary>
|
|
/// <param name="message">A detailed description of the error.</param>
|
|
// Token: 0x06000817 RID: 2071 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000817")]
|
|
[Address(RVA = "0x4EF7A0", Offset = "0x4EE5A0", VA = "0x1804EF7A0")]
|
|
public InvalidAsynchronousStateException(string message)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.InvalidAsynchronousStateException" /> class with the specified detailed description and the specified exception.</summary>
|
|
/// <param name="message">A detailed description of the error.</param>
|
|
/// <param name="innerException">A reference to the inner exception that is the cause of this exception.</param>
|
|
// Token: 0x06000818 RID: 2072 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000818")]
|
|
[Address(RVA = "0x4EF7D0", Offset = "0x4EE5D0", VA = "0x1804EF7D0")]
|
|
public InvalidAsynchronousStateException(string message, Exception innerException)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.InvalidAsynchronousStateException" /> class with the given <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" />.</summary>
|
|
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to be used for deserialization.</param>
|
|
/// <param name="context">The destination to be used for deserialization.</param>
|
|
// Token: 0x06000819 RID: 2073 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000819")]
|
|
[Address(RVA = "0x4EF7B0", Offset = "0x4EE5B0", VA = "0x1804EF7B0")]
|
|
protected InvalidAsynchronousStateException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|