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.WebSocket
{
// Token: 0x020018C2 RID: 6338
[Token(Token = "0x20018C2")]
public sealed class OnWebSocketOpenDelegate : MulticastDelegate
{
// Token: 0x060094E8 RID: 38120 RVA: 0x001E9B48 File Offset: 0x001E7D48
[Token(Token = "0x60094E8")]
[Address(RVA = "0x448ED0", Offset = "0x447CD0", VA = "0x180448ED0")]
public OnWebSocketOpenDelegate(object @object, IntPtr method)
{
this.method = method;
this.m_target = @object;
}
// Token: 0x060094E9 RID: 38121 RVA: 0x001E9B64 File Offset: 0x001E7D64
[Token(Token = "0x60094E9")]
[Address(RVA = "0x1332C50", Offset = "0x1331A50", VA = "0x181332C50", Slot = "13")]
public void Invoke(WebSocket webSocket)
{
if (this.delegates != 0)
{
}
uint num;
if (num != (uint)0)
{
throw new ExecutionEngineException();
}
}
// Token: 0x060094EA RID: 38122 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x60094EA")]
[Address(RVA = "0x457150", Offset = "0x455F50", VA = "0x180457150", Slot = "14")]
public IAsyncResult BeginInvoke(WebSocket webSocket, AsyncCallback callback, object @object)
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x060094EB RID: 38123 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x60094EB")]
[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.");
}
}
}