Files
2026-04-08 23:40:05 +02:00

53 lines
1.7 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace BestHTTP
{
// Token: 0x020012AB RID: 4779
[Token(Token = "0x20012AB")]
[StructLayout(3, Size = 8)]
public sealed class OnRequestFinishedDelegate : MulticastDelegate
{
// Token: 0x06007711 RID: 30481 RVA: 0x0018AA28 File Offset: 0x00188C28
[Token(Token = "0x6007711")]
[Address(RVA = "0x3E5170", Offset = "0x3E3B70", VA = "0x1803E5170")]
public OnRequestFinishedDelegate(object @object, IntPtr method)
{
this.method = method;
this.m_target = @object;
}
// Token: 0x06007712 RID: 30482 RVA: 0x0018AA44 File Offset: 0x00188C44
[Token(Token = "0x6007712")]
[Address(RVA = "0x519DF0", Offset = "0x5187F0", VA = "0x180519DF0", Slot = "13")]
public void Invoke(HTTPRequest originalRequest, HTTPResponse response)
{
if (this.delegates != 0)
{
}
uint num;
if (num != (uint)0)
{
throw new ExecutionEngineException();
}
}
// Token: 0x06007713 RID: 30483 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x6007713")]
[Address(RVA = "0x4330B0", Offset = "0x431AB0", VA = "0x1804330B0", 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: 0x06007714 RID: 30484 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x6007714")]
[Address(RVA = "0x40BFF0", Offset = "0x40A9F0", VA = "0x18040BFF0", Slot = "15")]
public void EndInvoke(IAsyncResult result)
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
}
}