53 lines
1.6 KiB
C#
53 lines
1.6 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace BestHTTP.Futures
|
|
{
|
|
// Token: 0x020019AE RID: 6574
|
|
[Token(Token = "0x20019AE")]
|
|
[StructLayout(3, Size = 8)]
|
|
public sealed class FutureErrorCallback : MulticastDelegate
|
|
{
|
|
// Token: 0x0600B094 RID: 45204 RVA: 0x00294678 File Offset: 0x00292878
|
|
[Token(Token = "0x600B094")]
|
|
[Address(RVA = "0x3E5170", Offset = "0x3E3B70", VA = "0x1803E5170")]
|
|
public FutureErrorCallback(object @object, IntPtr method)
|
|
{
|
|
this.method = method;
|
|
this.m_target = @object;
|
|
}
|
|
|
|
// Token: 0x0600B095 RID: 45205 RVA: 0x00294694 File Offset: 0x00292894
|
|
[Token(Token = "0x600B095")]
|
|
[Address(RVA = "0x6F1D00", Offset = "0x6F0700", VA = "0x1806F1D00", Slot = "13")]
|
|
public void Invoke(Exception error)
|
|
{
|
|
if (this.delegates != 0)
|
|
{
|
|
}
|
|
uint num;
|
|
if (num != (uint)0)
|
|
{
|
|
throw new ExecutionEngineException();
|
|
}
|
|
}
|
|
|
|
// Token: 0x0600B096 RID: 45206 RVA: 0x0000220F File Offset: 0x0000040F
|
|
[Token(Token = "0x600B096")]
|
|
[Address(RVA = "0x42BD30", Offset = "0x42A730", VA = "0x18042BD30", Slot = "14")]
|
|
public IAsyncResult BeginInvoke(Exception error, AsyncCallback callback, object @object)
|
|
{
|
|
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
|
}
|
|
|
|
// Token: 0x0600B097 RID: 45207 RVA: 0x0000220F File Offset: 0x0000040F
|
|
[Token(Token = "0x600B097")]
|
|
[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.");
|
|
}
|
|
}
|
|
}
|