m
This commit is contained in:
@@ -0,0 +1,50 @@
|
||||
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: 0x0200014C RID: 332
|
||||
[Token(Token = "0x200014C")]
|
||||
[Serializable]
|
||||
public class InvalidAsynchronousStateException : ArgumentException
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.ComponentModel.InvalidAsynchronousStateException" /> class.</summary>
|
||||
// Token: 0x06000800 RID: 2048 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000800")]
|
||||
[Address(RVA = "0xC59BC0", Offset = "0xC58BC0", VA = "0x180C59BC0")]
|
||||
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: 0x06000801 RID: 2049 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000801")]
|
||||
[Address(RVA = "0xC59BA0", Offset = "0xC58BA0", VA = "0x180C59BA0")]
|
||||
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: 0x06000802 RID: 2050 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000802")]
|
||||
[Address(RVA = "0xC59BB0", Offset = "0xC58BB0", VA = "0x180C59BB0")]
|
||||
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: 0x06000803 RID: 2051 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000803")]
|
||||
[Address(RVA = "0x71BEB0", Offset = "0x71AEB0", VA = "0x18071BEB0")]
|
||||
protected InvalidAsynchronousStateException(SerializationInfo info, StreamingContext context)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user