Pdelvo.Minecraft.Proxy.Library.Connection.ProxyConnection.StartServerListening C# (CSharp) Method

StartServerListening() public method

Start waiting for server packets
public StartServerListening ( ) : void
return void
        public void StartServerListening()
        {
            ServerEndPoint.ConnectionLost += ServerConnectionLost;
            ServerEndPoint.PacketReceived += ServerPacketReceived;
            ServerEndPoint.StartListening ();
        }