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: 0x020019A2 RID: 6562
[Token(Token = "0x20019A2")]
public sealed class OnWebSocketOpenDelegate : MulticastDelegate
{
// Token: 0x060098B6 RID: 39094 RVA: 0x001F2BE4 File Offset: 0x001F0DE4
[Token(Token = "0x60098B6")]
[Address(RVA = "0x4AF020", Offset = "0x4AE020", VA = "0x1804AF020")]
public OnWebSocketOpenDelegate(object @object, IntPtr method)
{
this.method = method;
this.m_target = @object;
}
// Token: 0x060098B7 RID: 39095 RVA: 0x001F2C00 File Offset: 0x001F0E00
[Token(Token = "0x60098B7")]
[Address(RVA = "0x62EAE0", Offset = "0x62DAE0", VA = "0x18062EAE0", Slot = "13")]
public void Invoke(WebSocket webSocket)
{
if (this.delegates != 0)
{
}
uint num;
if (num != (uint)0)
{
throw new ExecutionEngineException();
}
}
// Token: 0x060098B8 RID: 39096 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x60098B8")]
[Address(RVA = "0x5FA200", Offset = "0x5F9200", VA = "0x1805FA200", 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: 0x060098B9 RID: 39097 RVA: 0x0000220F File Offset: 0x0000040F
[Token(Token = "0x60098B9")]
[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.");
}
}
}