Files
2026-04-08 23:40:05 +02:00

53 lines
1.6 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace BestHTTP.WebSocket
{
// Token: 0x020012E3 RID: 4835
[Token(Token = "0x20012E3")]
[StructLayout(3, Size = 8)]
public sealed class OnWebSocketOpenDelegate : MulticastDelegate
{
// Token: 0x060078FC RID: 30972 RVA: 0x00192308 File Offset: 0x00190508
[Token(Token = "0x60078FC")]
[Address(RVA = "0x3E5170", Offset = "0x3E3B70", VA = "0x1803E5170")]
public OnWebSocketOpenDelegate(object @object, IntPtr method)
{
this.method = method;
this.m_target = @object;
}
// Token: 0x060078FD RID: 30973 RVA: 0x00192324 File Offset: 0x00190524
[Token(Token = "0x60078FD")]
[Address(RVA = "0x6F3010", Offset = "0x6F1A10", VA = "0x1806F3010", Slot = "13")]
public void Invoke(WebSocket webSocket)
{
if (this.delegates != 0)
{
}
uint num;
if (num != (uint)0)
{
throw new ExecutionEngineException();
}
}
// Token: 0x060078FE RID: 30974 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x60078FE")]
[Address(RVA = "0x42BD30", Offset = "0x42A730", VA = "0x18042BD30", 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: 0x060078FF RID: 30975 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x60078FF")]
[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.");
}
}
}