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
{
// Token: 0x0200189E RID: 6302
[Token(Token = "0x200189E")]
public sealed class OnUploadProgressDelegate : MulticastDelegate
{
// Token: 0x06009399 RID: 37785 RVA: 0x001E5058 File Offset: 0x001E3258
[Token(Token = "0x6009399")]
[Address(RVA = "0x448ED0", Offset = "0x447CD0", VA = "0x180448ED0")]
public OnUploadProgressDelegate(object @object, IntPtr method)
{
this.method = method;
this.m_target = @object;
}
// Token: 0x0600939A RID: 37786 RVA: 0x001E5074 File Offset: 0x001E3274
[Token(Token = "0x600939A")]
[Address(RVA = "0x2651A40", Offset = "0x2650840", VA = "0x182651A40", Slot = "13")]
public void Invoke(HTTPRequest originalRequest, long uploaded, long uploadLength)
{
if (this.delegates != 0)
{
}
uint num;
if (num != (uint)0)
{
throw new ExecutionEngineException();
}
}
// Token: 0x0600939B RID: 37787 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x600939B")]
[Address(RVA = "0x2651D40", Offset = "0x2650B40", VA = "0x182651D40", Slot = "14")]
public IAsyncResult BeginInvoke(HTTPRequest originalRequest, long uploaded, long uploadLength, AsyncCallback callback, object @object)
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x0600939C RID: 37788 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x600939C")]
[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.");
}
}
}