Files
2026-04-10 22:50:51 +02:00

51 lines
1.6 KiB
C#

using System;
using Cpp2IlInjected;
namespace BestHTTP.WebSocket
{
// Token: 0x020018C3 RID: 6339
[Token(Token = "0x20018C3")]
public sealed class OnWebSocketMessageDelegate : MulticastDelegate
{
// Token: 0x060094EC RID: 38124 RVA: 0x001E9BF0 File Offset: 0x001E7DF0
[Token(Token = "0x60094EC")]
[Address(RVA = "0x448ED0", Offset = "0x447CD0", VA = "0x180448ED0")]
public OnWebSocketMessageDelegate(object @object, IntPtr method)
{
this.method = method;
this.m_target = @object;
}
// Token: 0x060094ED RID: 38125 RVA: 0x001E9C0C File Offset: 0x001E7E0C
[Token(Token = "0x60094ED")]
[Address(RVA = "0x5F71E0", Offset = "0x5F5FE0", VA = "0x1805F71E0", Slot = "13")]
public void Invoke(WebSocket webSocket, string message)
{
if (this.delegates != 0)
{
}
uint num;
if (num != (uint)0)
{
throw new ExecutionEngineException();
}
}
// Token: 0x060094EE RID: 38126 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x60094EE")]
[Address(RVA = "0x457420", Offset = "0x456220", VA = "0x180457420", 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: 0x060094EF RID: 38127 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x60094EF")]
[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.");
}
}
}