This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
@@ -0,0 +1,50 @@
using System;
using Cpp2IlInjected;
namespace BestHTTP.Futures
{
// Token: 0x02001F8B RID: 8075
[Token(Token = "0x2001F8B")]
public sealed class FutureErrorCallback : MulticastDelegate
{
// Token: 0x0600CC6E RID: 52334 RVA: 0x002ECB6C File Offset: 0x002EAD6C
[Token(Token = "0x600CC6E")]
[Address(RVA = "0x448ED0", Offset = "0x447CD0", VA = "0x180448ED0")]
public FutureErrorCallback(object @object, IntPtr method)
{
this.method = method;
this.m_target = @object;
}
// Token: 0x0600CC6F RID: 52335 RVA: 0x002ECB88 File Offset: 0x002EAD88
[Token(Token = "0x600CC6F")]
[Address(RVA = "0x747410", Offset = "0x746210", VA = "0x180747410", Slot = "13")]
public void Invoke(Exception error)
{
if (this.delegates != 0)
{
}
uint num;
if (num != (uint)0)
{
throw new ExecutionEngineException();
}
}
// Token: 0x0600CC70 RID: 52336 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x600CC70")]
[Address(RVA = "0x457150", Offset = "0x455F50", VA = "0x180457150", Slot = "14")]
public IAsyncResult BeginInvoke(Exception error, AsyncCallback callback, object @object)
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x0600CC71 RID: 52337 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x600CC71")]
[Address(RVA = "0x448B70", Offset = "0x447970", VA = "0x180448B70", Slot = "15")]
public void EndInvoke(IAsyncResult result)
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
}
}