Ejemplo n.º 1
0
        /// <summary>
        /// Common constructor base.
        /// </summary>
        private Account()
        {
            m_chractersListMonitor          = new AccountQueryMonitor <SerializableCharacterList>(this, APIMethods.CharacterList);
            m_chractersListMonitor.Updated += new QueryCallback <SerializableCharacterList>(OnCharactersListUpdated);

            m_ignoreList = new AccountIgnoreList(this);
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Common constructor base.
        /// </summary>
        private Account()
        {
            m_charactersListMonitor          = new AccountQueryMonitor <SerializableAPICharacters>(this, APIMethods.CharacterList);
            m_charactersListMonitor.Updated += OnCharactersListUpdated;

            m_accountStatusMonitor          = new AccountQueryMonitor <SerializableAPIAccountStatus>(this, APIMethods.AccountStatus);
            m_accountStatusMonitor.Updated += OnAccountStatusUpdated;

            m_ignoreList = new AccountIgnoreList(this);
        }