This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,50 @@
using System;
using Cpp2IlInjected;
namespace BestHTTP.WebSocket
{
// Token: 0x020018C4 RID: 6340
[Token(Token = "0x20018C4")]
public sealed class OnWebSocketBinaryDelegate : MulticastDelegate
{
// Token: 0x060094F0 RID: 38128 RVA: 0x001E9C8C File Offset: 0x001E7E8C
[Token(Token = "0x60094F0")]
[Address(RVA = "0x448ED0", Offset = "0x447CD0", VA = "0x180448ED0")]
public OnWebSocketBinaryDelegate(object @object, IntPtr method)
{
this.method = method;
this.m_target = @object;
}
// Token: 0x060094F1 RID: 38129 RVA: 0x001E9CA8 File Offset: 0x001E7EA8
[Token(Token = "0x60094F1")]
[Address(RVA = "0x1C3A8C0", Offset = "0x1C396C0", VA = "0x181C3A8C0", Slot = "13")]
public void Invoke(WebSocket webSocket, byte[] data)
{
if (this.delegates != 0)
{
}
uint num;
if (num != (uint)0)
{
throw new ExecutionEngineException();
}
}
// Token: 0x060094F2 RID: 38130 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x60094F2")]
[Address(RVA = "0x457420", Offset = "0x456220", VA = "0x180457420", Slot = "14")]
public IAsyncResult BeginInvoke(WebSocket webSocket, byte[] data, AsyncCallback callback, object @object)
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x060094F3 RID: 38131 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x60094F3")]
[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.");
}
}
}