StopPacketReceiver
Namespace: SynicSugar.P2P
Class: ConnectHub
public void StopPacketReceiver()
Description
Stop just getting a packet from the receiving buffer. To get a packet again, call StartPacketReceiver.
using SynicSugar.P2P;
public class p2pSample {
void ConnectHubSample(){
ConnectHub.Instance.StopPacketReceiver();
}
}