Files
2026-04-10 22:50:51 +02:00

85 lines
3.0 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Runtime.ExceptionServices
{
/// <summary>Represents an exception whose state is captured at a certain point in code.</summary>
// Token: 0x0200052A RID: 1322
[Token(Token = "0x200052A")]
public sealed class ExceptionDispatchInfo
{
// Token: 0x060029EE RID: 10734 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60029EE")]
[Address(RVA = "0x294C4F0", Offset = "0x294B2F0", VA = "0x18294C4F0")]
private ExceptionDispatchInfo(Exception exception)
{
}
// Token: 0x17000638 RID: 1592
// (get) Token: 0x060029EF RID: 10735 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x17000638")]
internal object BinaryStackTraceArray
{
[Token(Token = "0x60029EF")]
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")]
get
{
return null;
}
}
/// <summary>Creates an <see cref="T:System.Runtime.ExceptionServices.ExceptionDispatchInfo" /> object that represents the specified exception at the current point in code.</summary>
/// <param name="source">The exception whose state is captured, and which is represented by the returned object.</param>
/// <returns>An object that represents the specified exception at the current point in code.</returns>
/// <exception cref="T:System.ArgumentException">
/// <paramref name="source" /> is <see langword="null" />.</exception>
// Token: 0x060029F0 RID: 10736 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x60029F0")]
[Address(RVA = "0x294C2A0", Offset = "0x294B0A0", VA = "0x18294C2A0")]
public static ExceptionDispatchInfo Capture(Exception source)
{
return null;
}
/// <summary>Gets the exception that is represented by the current instance.</summary>
/// <returns>The exception that is represented by the current instance.</returns>
// Token: 0x17000639 RID: 1593
// (get) Token: 0x060029F1 RID: 10737 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x17000639")]
public Exception SourceException
{
[Token(Token = "0x60029F1")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
get
{
return null;
}
}
/// <summary>Throws the exception that is represented by the current <see cref="T:System.Runtime.ExceptionServices.ExceptionDispatchInfo" /> object, after restoring the state that was saved when the exception was captured.</summary>
// Token: 0x060029F2 RID: 10738 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60029F2")]
[Address(RVA = "0x294C450", Offset = "0x294B250", VA = "0x18294C450")]
public void Throw()
{
}
// Token: 0x060029F3 RID: 10739 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60029F3")]
[Address(RVA = "0x294C4C0", Offset = "0x294B2C0", VA = "0x18294C4C0")]
public static void Throw(Exception source)
{
}
// Token: 0x0400185A RID: 6234
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x400185A")]
private Exception m_Exception;
// Token: 0x0400185B RID: 6235
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x400185B")]
private object m_stackTrace;
}
}