Ejemplo n.º 1
0
        // -------------------------------------------------------------------------------
        // AckAccountResendConfirmation
        // -------------------------------------------------------------------------------
        public void AckAccountResendConfirmation(MsgAckAccountResendConfirmation message, NetworkConnection connection = null)
        {
            string sResult = (message.bSuccess) ? Constants.INT_SUCCESS.ToString() : Constants.INT_FAILURE.ToString();

            DictionaryDoAction("CallbackResendConfirmation", new string[] { sResult });
        }
Ejemplo n.º 2
0
        // -------------------------------------------------------------------------------
        // OnAckAccountResendConfirmation
        // -------------------------------------------------------------------------------
        public void OnAckAccountResendConfirmation(NetworkMessage networkMessage)
        {
            MsgAckAccountResendConfirmation message = networkMessage.ReadMessage <MsgAckAccountResendConfirmation>();

            clientManager.AckAccountResendConfirmation(message, networkMessage.conn);
        }