This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,84 @@
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;
}
}
@@ -0,0 +1,12 @@
using System;
using Cpp2IlInjected;
namespace System.Runtime.ExceptionServices
{
/// <summary>Provides data for the notification event that is raised when a managed exception first occurs, before the common language runtime begins searching for event handlers.</summary>
// Token: 0x02000529 RID: 1321
[Token(Token = "0x2000529")]
public class FirstChanceExceptionEventArgs : EventArgs
{
}
}
@@ -0,0 +1,20 @@
using System;
using Cpp2IlInjected;
namespace System.Runtime.ExceptionServices
{
/// <summary>Enables managed code to handle exceptions that indicate a corrupted process state.</summary>
// Token: 0x02000528 RID: 1320
[Token(Token = "0x2000528")]
[AttributeUsage(AttributeTargets.Method)]
public sealed class HandleProcessCorruptedStateExceptionsAttribute : Attribute
{
/// <summary>Initializes a new instance of the <see cref="T:System.Runtime.ExceptionServices.HandleProcessCorruptedStateExceptionsAttribute" /> class.</summary>
// Token: 0x060029ED RID: 10733 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60029ED")]
[Address(RVA = "0x4093D0", Offset = "0x4081D0", VA = "0x1804093D0")]
public HandleProcessCorruptedStateExceptionsAttribute()
{
}
}
}