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: 0x0200014A RID: 330
|
|
[Token(Token = "0x200014A")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public class TimeoutException : SystemException
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.TimeoutException" /> class.</summary>
|
|
// Token: 0x06000CCA RID: 3274 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000CCA")]
|
|
[Address(RVA = "0xF7B7F0", Offset = "0xF7A7F0", VA = "0x180F7B7F0")]
|
|
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: 0x06000CCB RID: 3275 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000CCB")]
|
|
[Address(RVA = "0xF7B850", Offset = "0xF7A850", VA = "0x180F7B850")]
|
|
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: 0x06000CCC RID: 3276 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000CCC")]
|
|
[Address(RVA = "0x7241B0", Offset = "0x7231B0", VA = "0x1807241B0")]
|
|
protected TimeoutException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|