/// <summary>
        /// Processes the queried character's location.
        /// </summary>
        /// <param name="result"></param>
        private void OnCharacterLocationUpdated(EsiAPILocation result)
        {
            var target = m_ccpCharacter;

            // Character may have been deleted since we queried
            if (target != null)
            {
                target.Import(result);
            }
        }
Exemple #2
0
        /// <summary>
        /// Processes the queried character's location.
        /// </summary>
        /// <param name="result"></param>
        private void OnCharacterLocationUpdated(EsiAPILocation result)
        {
            var target = m_ccpCharacter;

            // Character may have been deleted since we queried
            if (target != null)
            {
                target.Import(result);
                QueryCharacterData <EsiAPIClones>(ESIAPICharacterMethods.Clones,
                                                  EveMonClient.Notifications.NotifyCharacterClonesError,
                                                  OnCharacterClonesUpdated);
            }
        }
Exemple #3
0
 /// <summary>
 /// Imports data from the given character location.
 /// </summary>
 /// <param name="location">The serialized character location</param>
 internal void Import(EsiAPILocation location)
 {
     LastKnownLocation = location.ToXMLItem();
     EveMonClient.OnCharacterInfoUpdated(this);
 }
Exemple #4
0
 /// <summary>
 /// Imports data from the given character location.
 /// </summary>
 /// <param name="location">The serialized character location</param>
 internal void Import(EsiAPILocation location)
 {
     LastKnownLocation = location.ToXMLItem();
 }