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

53 lines
1.6 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace BestHTTP
{
// Token: 0x020012B0 RID: 4784
[Token(Token = "0x20012B0")]
[StructLayout(3, Size = 8)]
public sealed class OnBeforeHeaderSendDelegate : MulticastDelegate
{
// Token: 0x06007725 RID: 30501 RVA: 0x0018AE9C File Offset: 0x0018909C
[Token(Token = "0x6007725")]
[Address(RVA = "0x3E5170", Offset = "0x3E3B70", VA = "0x1803E5170")]
public OnBeforeHeaderSendDelegate(object @object, IntPtr method)
{
this.method = method;
this.m_target = @object;
}
// Token: 0x06007726 RID: 30502 RVA: 0x0018AEB8 File Offset: 0x001890B8
[Token(Token = "0x6007726")]
[Address(RVA = "0x6931D0", Offset = "0x691BD0", VA = "0x1806931D0", Slot = "13")]
public void Invoke(HTTPRequest req)
{
if (this.delegates != 0)
{
}
uint num;
if (num != (uint)0)
{
throw new ExecutionEngineException();
}
}
// Token: 0x06007727 RID: 30503 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x6007727")]
[Address(RVA = "0x42BD30", Offset = "0x42A730", VA = "0x18042BD30", Slot = "14")]
public IAsyncResult BeginInvoke(HTTPRequest req, AsyncCallback callback, object @object)
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x06007728 RID: 30504 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x6007728")]
[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.");
}
}
}