示例#1
0
        private void HandleShutdown(BinaryReader br)
        {
            RMPShutdownMsg msg = new RMPShutdownMsg(br);

            if (Shutdown != null)
            {
                Shutdown(this, null);
            }
        }
示例#2
0
 private void HandleShutdown(BinaryReader br)
 {
     RMPShutdownMsg msg = new RMPShutdownMsg(br);
     if (Shutdown != null) Shutdown(this, null);
 }