Files
2026-06-04 11:42:34 +02:00

33 lines
1.1 KiB
C#

using System;
namespace ExitGames.Client.Photon
{
// Token: 0x02000034 RID: 52
public class SocketUdpNativeStatic : IPhotonSocket
{
// Token: 0x06000248 RID: 584 RVA: 0x000130BC File Offset: 0x000112BC
public SocketUdpNativeStatic(PeerBase peerBase)
: base(peerBase)
{
}
// Token: 0x06000249 RID: 585 RVA: 0x000130C7 File Offset: 0x000112C7
public override bool Disconnect()
{
throw new NotImplementedException("This class was compiled in an assembly WITH c# sockets. Another dll must be used for native sockets.");
}
// Token: 0x0600024A RID: 586 RVA: 0x000130C7 File Offset: 0x000112C7
public override PhotonSocketError Send(byte[] data, int length)
{
throw new NotImplementedException("This class was compiled in an assembly WITH c# sockets. Another dll must be used for native sockets.");
}
// Token: 0x0600024B RID: 587 RVA: 0x000130C7 File Offset: 0x000112C7
public override PhotonSocketError Receive(out byte[] data)
{
throw new NotImplementedException("This class was compiled in an assembly WITH c# sockets. Another dll must be used for native sockets.");
}
}
}