66 lines
2.8 KiB
C#
66 lines
2.8 KiB
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Runtime.CompilerServices
|
|
{
|
|
/// <summary>Wraps an exception that does not derive from the <see cref="T:System.Exception" /> class. This class cannot be inherited.</summary>
|
|
// Token: 0x02000561 RID: 1377
|
|
[Token(Token = "0x2000561")]
|
|
[Serializable]
|
|
public sealed class RuntimeWrappedException : Exception
|
|
{
|
|
// Token: 0x06002C44 RID: 11332 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6002C44")]
|
|
[Address(RVA = "0x2CFC540", Offset = "0x2CFB540", VA = "0x182CFC540")]
|
|
private RuntimeWrappedException(object thrownObject)
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets the object that was wrapped by the <see cref="T:System.Runtime.CompilerServices.RuntimeWrappedException" /> object.</summary>
|
|
/// <returns>The object that was wrapped by the <see cref="T:System.Runtime.CompilerServices.RuntimeWrappedException" /> object.</returns>
|
|
// Token: 0x170006B6 RID: 1718
|
|
// (get) Token: 0x06002C45 RID: 11333 RVA: 0x00002082 File Offset: 0x00000282
|
|
[Token(Token = "0x170006B6")]
|
|
public object WrappedException
|
|
{
|
|
[Token(Token = "0x6002C45")]
|
|
[Address(RVA = "0x4C31C0", Offset = "0x4C21C0", VA = "0x1804C31C0")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with information about the exception.</summary>
|
|
/// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that holds the 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.</param>
|
|
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> parameter is <see langword="null" />.</exception>
|
|
// Token: 0x06002C46 RID: 11334 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6002C46")]
|
|
[Address(RVA = "0x2CFC450", Offset = "0x2CFB450", VA = "0x182CFC450", Slot = "10")]
|
|
public override void GetObjectData(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06002C47 RID: 11335 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6002C47")]
|
|
[Address(RVA = "0x2CFC610", Offset = "0x2CFB610", VA = "0x182CFC610")]
|
|
internal RuntimeWrappedException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06002C48 RID: 11336 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6002C48")]
|
|
[Address(RVA = "0x2CFC5E0", Offset = "0x2CFB5E0", VA = "0x182CFC5E0")]
|
|
internal RuntimeWrappedException()
|
|
{
|
|
}
|
|
|
|
// Token: 0x04001944 RID: 6468
|
|
[FieldOffset(Offset = "0x88")]
|
|
[Token(Token = "0x4001944")]
|
|
private object m_wrappedException;
|
|
}
|
|
}
|