Files
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

51 lines
1.6 KiB
C#

using System;
using Cpp2IlInjected;
namespace BestHTTP
{
// Token: 0x0200189C RID: 6300
[Token(Token = "0x200189C")]
public sealed class OnRequestFinishedDelegate : MulticastDelegate
{
// Token: 0x06009391 RID: 37777 RVA: 0x001E4EB8 File Offset: 0x001E30B8
[Token(Token = "0x6009391")]
[Address(RVA = "0x448ED0", Offset = "0x447CD0", VA = "0x180448ED0")]
public OnRequestFinishedDelegate(object @object, IntPtr method)
{
this.method = method;
this.m_target = @object;
}
// Token: 0x06009392 RID: 37778 RVA: 0x001E4ED4 File Offset: 0x001E30D4
[Token(Token = "0x6009392")]
[Address(RVA = "0x48FFD0", Offset = "0x48EDD0", VA = "0x18048FFD0", Slot = "13")]
public void Invoke(HTTPRequest originalRequest, HTTPResponse response)
{
if (this.delegates != 0)
{
}
uint num;
if (num != (uint)0)
{
throw new ExecutionEngineException();
}
}
// Token: 0x06009393 RID: 37779 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x6009393")]
[Address(RVA = "0x457420", Offset = "0x456220", VA = "0x180457420", 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: 0x06009394 RID: 37780 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x6009394")]
[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.");
}
}
}