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: 0x020018C5 RID: 6341
[Token(Token = "0x20018C5")]
public sealed class OnWebSocketClosedDelegate : MulticastDelegate
{
// Token: 0x060094F4 RID: 38132 RVA: 0x001E9D70 File Offset: 0x001E7F70
[Token(Token = "0x60094F4")]
[Address(RVA = "0x448ED0", Offset = "0x447CD0", VA = "0x180448ED0")]
public OnWebSocketClosedDelegate(object @object, IntPtr method)
{
this.method = method;
this.m_target = @object;
}
// Token: 0x060094F5 RID: 38133 RVA: 0x001E9D8C File Offset: 0x001E7F8C
[Token(Token = "0x60094F5")]
[Address(RVA = "0x1C3ADB0", Offset = "0x1C39BB0", VA = "0x181C3ADB0", Slot = "13")]
public void Invoke(WebSocket webSocket, ushort code, string message)
{
if (this.delegates != 0)
{
}
uint num;
if (num != (uint)0)
{
throw new ExecutionEngineException();
}
}
// Token: 0x060094F6 RID: 38134 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x60094F6")]
[Address(RVA = "0x1C3AD10", Offset = "0x1C39B10", VA = "0x181C3AD10", Slot = "14")]
public IAsyncResult BeginInvoke(WebSocket webSocket, ushort code, string message, AsyncCallback callback, object @object)
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
// Token: 0x060094F7 RID: 38135 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x60094F7")]
[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.");
}
}
}