45 lines
2.3 KiB
C#
45 lines
2.3 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Runtime.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System
|
|
{
|
|
/// <summary>The exception that is thrown when the time allotted for a process or operation has expired.</summary>
|
|
// Token: 0x02000143 RID: 323
|
|
[Token(Token = "0x2000143")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public class TimeoutException : SystemException
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.TimeoutException" /> class.</summary>
|
|
// Token: 0x06000C96 RID: 3222 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000C96")]
|
|
[Address(RVA = "0x327D330", Offset = "0x327C130", VA = "0x18327D330")]
|
|
public TimeoutException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.TimeoutException" /> class with the specified error message.</summary>
|
|
/// <param name="message">The message that describes the error.</param>
|
|
// Token: 0x06000C97 RID: 3223 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000C97")]
|
|
[Address(RVA = "0x327D390", Offset = "0x327C190", VA = "0x18327D390")]
|
|
public TimeoutException(string message)
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.TimeoutException" /> class with serialized data.</summary>
|
|
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that contains serialized object data about the exception being thrown.</param>
|
|
/// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains contextual information about the source or destination. The <paramref name="context" /> parameter is reserved for future use, and can be specified as <see langword="null" />.</param>
|
|
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is <see langword="null" />.</exception>
|
|
/// <exception cref="T:System.Runtime.Serialization.SerializationException">The class name is <see langword="null" />, or <see cref="P:System.Exception.HResult" /> is zero (0).</exception>
|
|
// Token: 0x06000C98 RID: 3224 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000C98")]
|
|
[Address(RVA = "0x3F60E0", Offset = "0x3F4EE0", VA = "0x1803F60E0")]
|
|
protected TimeoutException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|