Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x02000546 RID: 1350
[Token(Token = "0x2000546")]
public sealed class ExceptionDispatchInfo
{
// Token: 0x06002BFB RID: 11259 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002BFB")]
[Address(RVA = "0x2CEDD40", Offset = "0x2CECD40", VA = "0x182CEDD40")]
private ExceptionDispatchInfo(Exception exception)
{
}
// Token: 0x170006B0 RID: 1712
// (get) Token: 0x06002BFC RID: 11260 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170006B0")]
internal object BinaryStackTraceArray
{
[Token(Token = "0x6002BFC")]
[Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")]
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: 0x06002BFD RID: 11261 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x6002BFD")]
[Address(RVA = "0x2CEDAF0", Offset = "0x2CECAF0", VA = "0x182CEDAF0")]
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: 0x170006B1 RID: 1713
// (get) Token: 0x06002BFE RID: 11262 RVA: 0x00002082 File Offset: 0x00000282
[Token(Token = "0x170006B1")]
public Exception SourceException
{
[Token(Token = "0x6002BFE")]
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
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: 0x06002BFF RID: 11263 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002BFF")]
[Address(RVA = "0x2CEDCA0", Offset = "0x2CECCA0", VA = "0x182CEDCA0")]
public void Throw()
{
}
// Token: 0x06002C00 RID: 11264 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6002C00")]
[Address(RVA = "0x2CEDD10", Offset = "0x2CECD10", VA = "0x182CEDD10")]
public static void Throw(Exception source)
{
}
// Token: 0x0400191D RID: 6429
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x400191D")]
private Exception m_Exception;
// Token: 0x0400191E RID: 6430
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x400191E")]
private object m_stackTrace;
}
}