This commit is contained in:
niko
2026-04-08 23:40:05 +02:00
parent d6894bcbc7
commit 18dc73f922
7750 changed files with 1795369 additions and 0 deletions
@@ -0,0 +1,52 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace BestHTTP.WebSocket
{
// Token: 0x020012E4 RID: 4836
[Token(Token = "0x20012E4")]
[StructLayout(3, Size = 8)]
public sealed class OnWebSocketMessageDelegate : MulticastDelegate
{
// Token: 0x06007900 RID: 30976 RVA: 0x001923B8 File Offset: 0x001905B8
[Token(Token = "0x6007900")]
[Address(RVA = "0x3E5170", Offset = "0x3E3B70", VA = "0x1803E5170")]
public OnWebSocketMessageDelegate(object @object, IntPtr method)
{
this.method = method;
this.m_target = @object;
}
// Token: 0x06007901 RID: 30977 RVA: 0x001923D4 File Offset: 0x001905D4
[Token(Token = "0x6007901")]
[Address(RVA = "0x6F2630", Offset = "0x6F1030", VA = "0x1806F2630", Slot = "13")]
public void Invoke(WebSocket webSocket, string message)
{
if (this.delegates != 0)
{
}
uint num;
if (num != (uint)0)
{
throw new ExecutionEngineException();
}
}
// Token: 0x06007902 RID: 30978 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x6007902")]
[Address(RVA = "0x4330B0", Offset = "0x431AB0", VA = "0x1804330B0", Slot = "14")]
public IAsyncResult BeginInvoke(WebSocket webSocket, string message, AsyncCallback callback, object @object)
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x06007903 RID: 30979 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x6007903")]
[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.");
}
}
}