Files
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

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: 0x02000543 RID: 1347
[Token(Token = "0x2000543")]
[Serializable]
public sealed class RuntimeWrappedException : Exception
{
// Token: 0x06002A35 RID: 10805 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002A35")]
[Address(RVA = "0x295FB20", Offset = "0x295E920", VA = "0x18295FB20")]
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: 0x1700063E RID: 1598
// (get) Token: 0x06002A36 RID: 10806 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x1700063E")]
public object WrappedException
{
[Token(Token = "0x6002A36")]
[Address(RVA = "0x44EC80", Offset = "0x44DA80", VA = "0x18044EC80")]
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: 0x06002A37 RID: 10807 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002A37")]
[Address(RVA = "0x295FA30", Offset = "0x295E830", VA = "0x18295FA30", Slot = "10")]
public override void GetObjectData(SerializationInfo info, StreamingContext context)
{
}
// Token: 0x06002A38 RID: 10808 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002A38")]
[Address(RVA = "0x295FBF0", Offset = "0x295E9F0", VA = "0x18295FBF0")]
internal RuntimeWrappedException(SerializationInfo info, StreamingContext context)
{
}
// Token: 0x06002A39 RID: 10809 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002A39")]
[Address(RVA = "0x295FBC0", Offset = "0x295E9C0", VA = "0x18295FBC0")]
internal RuntimeWrappedException()
{
}
// Token: 0x04001881 RID: 6273
[FieldOffset(Offset = "0x88")]
[Token(Token = "0x4001881")]
private object m_wrappedException;
}
}