Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

51 lines
1.6 KiB
C#

using System;
using Cpp2IlInjected;
namespace BestHTTP.WebSocket
{
// Token: 0x020019A4 RID: 6564
[Token(Token = "0x20019A4")]
public sealed class OnWebSocketBinaryDelegate : MulticastDelegate
{
// Token: 0x060098BE RID: 39102 RVA: 0x001F2D28 File Offset: 0x001F0F28
[Token(Token = "0x60098BE")]
[Address(RVA = "0x4AF020", Offset = "0x4AE020", VA = "0x1804AF020")]
public OnWebSocketBinaryDelegate(object @object, IntPtr method)
{
this.method = method;
this.m_target = @object;
}
// Token: 0x060098BF RID: 39103 RVA: 0x001F2D44 File Offset: 0x001F0F44
[Token(Token = "0x60098BF")]
[Address(RVA = "0x62D840", Offset = "0x62C840", VA = "0x18062D840", Slot = "13")]
public void Invoke(WebSocket webSocket, byte[] data)
{
if (this.delegates != 0)
{
}
uint num;
if (num != (uint)0)
{
throw new ExecutionEngineException();
}
}
// Token: 0x060098C0 RID: 39104 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x60098C0")]
[Address(RVA = "0x52CC60", Offset = "0x52BC60", VA = "0x18052CC60", 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: 0x060098C1 RID: 39105 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x60098C1")]
[Address(RVA = "0x4F56B0", Offset = "0x4F46B0", VA = "0x1804F56B0", Slot = "15")]
public void EndInvoke(IAsyncResult result)
{
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
}
}
}