This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,50 @@
using System;
using Cpp2IlInjected;
namespace BestHTTP
{
// Token: 0x0200197C RID: 6524
[Token(Token = "0x200197C")]
public sealed class OnRequestFinishedDelegate : MulticastDelegate
{
// Token: 0x0600975F RID: 38751 RVA: 0x001EDF5C File Offset: 0x001EC15C
[Token(Token = "0x600975F")]
[Address(RVA = "0x4AF020", Offset = "0x4AE020", VA = "0x1804AF020")]
public OnRequestFinishedDelegate(object @object, IntPtr method)
{
this.method = method;
this.m_target = @object;
}
// Token: 0x06009760 RID: 38752 RVA: 0x001EDF78 File Offset: 0x001EC178
[Token(Token = "0x6009760")]
[Address(RVA = "0x52CCA0", Offset = "0x52BCA0", VA = "0x18052CCA0", Slot = "13")]
public void Invoke(HTTPRequest originalRequest, HTTPResponse response)
{
if (this.delegates != 0)
{
}
uint num;
if (num != (uint)0)
{
throw new ExecutionEngineException();
}
}
// Token: 0x06009761 RID: 38753 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x6009761")]
[Address(RVA = "0x52CC60", Offset = "0x52BC60", VA = "0x18052CC60", Slot = "14")]
public IAsyncResult BeginInvoke(HTTPRequest originalRequest, HTTPResponse response, AsyncCallback callback, object @object)
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x06009762 RID: 38754 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x6009762")]
[Address(RVA = "0x4F56B0", Offset = "0x4F46B0", VA = "0x1804F56B0", Slot = "15")]
public void EndInvoke(IAsyncResult result)
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
}
}