public OnAccountPhonenumbersPolicyArgs(SktAccount sender, SktAccount.PHONENUMBERSPOLICY newValue)
 {
     this.sender = sender;  value = newValue;
 }
 internal void FetchPhonenumbersPolicyFromRuntime()
 {
     if (skypeRef.logging) skypeRef.Log("Fetching P_PHONENUMBERS_POLICY from runtime");
     skypeRef.transport.SubmitPropertyRequest(5, 168, this.OID);
     if (skypeRef.transport.PropResponseWasOk(168))
     {
     cache_phonenumbers_policy = (SktAccount.PHONENUMBERSPOLICY)skypeRef.decoder.DecodeUint();
     cache[18] = true;
     }
     skypeRef.transport.ResumeSocketReaderFromPropRequest();
 }
        /** When the socket reader receives a property update from runtime, it decodes object ID
         * property ID and the new value of the property. It then calls this method of
         * the target object, to update the new value in property cache. After updating the cache,
         * this method then fires appropriate event in skype.events to notify the UI of what has happened.
         * DispatchPropertyUpdate is executed in the socket reader thread.
         */
        internal override void DispatchPropertyUpdate(uint propId, object value, bool hasValue)
        {
            switch (propId)
            {
            case 70: /* Account.P_STATUS */
                cache[0] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_status = (SktAccount.STATUS)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_STATUS = " + cache_status.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_STATUS - update without value");
                skypeRef.events.FireOnAccountStatus(this, cache_status);
                break;

            case 71: /* Account.P_PWDCHANGESTATUS */
                cache[1] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_pwdchangestatus = (SktAccount.PWDCHANGESTATUS)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_PWDCHANGESTATUS = " + cache_pwdchangestatus.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_PWDCHANGESTATUS - update without value");
                skypeRef.events.FireOnAccountPwdchangestatus(this, cache_pwdchangestatus);
                break;

            case 73: /* Account.P_LOGOUTREASON */
                cache[2] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_logoutreason = (SktAccount.LOGOUTREASON)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_LOGOUTREASON = " + cache_logoutreason.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_LOGOUTREASON - update without value");
                skypeRef.events.FireOnAccountLogoutreason(this, cache_logoutreason);
                break;

            case 78: /* Account.P_COMMITSTATUS */
                cache[3] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_commitstatus = (SktAccount.COMMITSTATUS)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_COMMITSTATUS = " + cache_commitstatus.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_COMMITSTATUS - update without value");
                skypeRef.events.FireOnAccountCommitstatus(this, cache_commitstatus);
                break;

            case 72: /* Account.P_SUGGESTED_SKYPENAME */
                cache[4] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_suggested_skypename = (String)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_SUGGESTED_SKYPENAME = " + cache_suggested_skypename.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_SUGGESTED_SKYPENAME - update without value");
                skypeRef.events.FireOnAccountSuggestedSkypename(this, cache_suggested_skypename);
                break;

            case 74: /* Account.P_SKYPEOUT_BALANCE_CURRENCY */
                cache[5] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_skypeout_balance_currency = (String)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_SKYPEOUT_BALANCE_CURRENCY = " + cache_skypeout_balance_currency.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_SKYPEOUT_BALANCE_CURRENCY - update without value");
                skypeRef.events.FireOnAccountSkypeoutBalanceCurrency(this, cache_skypeout_balance_currency);
                break;

            case 75: /* Account.P_SKYPEOUT_BALANCE */
                cache[6] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_skypeout_balance = (uint)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_SKYPEOUT_BALANCE = " + cache_skypeout_balance.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_SKYPEOUT_BALANCE - update without value");
                skypeRef.events.FireOnAccountSkypeoutBalance(this, cache_skypeout_balance);
                break;

            case 804: /* Account.P_SKYPEOUT_PRECISION */
                cache[7] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_skypeout_precision = (uint)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_SKYPEOUT_PRECISION = " + cache_skypeout_precision.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_SKYPEOUT_PRECISION - update without value");
                skypeRef.events.FireOnAccountSkypeoutPrecision(this, cache_skypeout_precision);
                break;

            case 76: /* Account.P_SKYPEIN_NUMBERS */
                cache[8] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_skypein_numbers = (String)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_SKYPEIN_NUMBERS = " + cache_skypein_numbers.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_SKYPEIN_NUMBERS - update without value");
                skypeRef.events.FireOnAccountSkypeinNumbers(this, cache_skypein_numbers);
                break;

            case 79: /* Account.P_CBLSYNCSTATUS */
                cache[9] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_cblsyncstatus = (SktAccount.CBLSYNCSTATUS)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_CBLSYNCSTATUS = " + cache_cblsyncstatus.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_CBLSYNCSTATUS - update without value");
                skypeRef.events.FireOnAccountCblsyncstatus(this, cache_cblsyncstatus);
                break;

            case 77: /* Account.P_OFFLINE_CALLFORWARD */
                cache[10] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_offline_callforward = (String)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_OFFLINE_CALLFORWARD = " + cache_offline_callforward.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_OFFLINE_CALLFORWARD - update without value");
                skypeRef.events.FireOnAccountOfflineCallforward(this, cache_offline_callforward);
                break;

            case 160: /* Account.P_CHAT_POLICY */
                cache[11] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_chat_policy = (SktAccount.CHATPOLICY)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_CHAT_POLICY = " + cache_chat_policy.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_CHAT_POLICY - update without value");
                skypeRef.events.FireOnAccountChatPolicy(this, cache_chat_policy);
                break;

            case 161: /* Account.P_SKYPE_CALL_POLICY */
                cache[12] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_skype_call_policy = (SktAccount.SKYPECALLPOLICY)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_SKYPE_CALL_POLICY = " + cache_skype_call_policy.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_SKYPE_CALL_POLICY - update without value");
                skypeRef.events.FireOnAccountSkypeCallPolicy(this, cache_skype_call_policy);
                break;

            case 162: /* Account.P_PSTN_CALL_POLICY */
                cache[13] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_pstn_call_policy = (SktAccount.PSTNCALLPOLICY)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_PSTN_CALL_POLICY = " + cache_pstn_call_policy.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_PSTN_CALL_POLICY - update without value");
                skypeRef.events.FireOnAccountPstnCallPolicy(this, cache_pstn_call_policy);
                break;

            case 163: /* Account.P_AVATAR_POLICY */
                cache[14] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_avatar_policy = (SktAccount.AVATARPOLICY)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_AVATAR_POLICY = " + cache_avatar_policy.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_AVATAR_POLICY - update without value");
                skypeRef.events.FireOnAccountAvatarPolicy(this, cache_avatar_policy);
                break;

            case 164: /* Account.P_BUDDYCOUNT_POLICY */
                cache[15] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_buddycount_policy = (SktAccount.BUDDYCOUNTPOLICY)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_BUDDYCOUNT_POLICY = " + cache_buddycount_policy.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_BUDDYCOUNT_POLICY - update without value");
                skypeRef.events.FireOnAccountBuddycountPolicy(this, cache_buddycount_policy);
                break;

            case 165: /* Account.P_TIMEZONE_POLICY */
                cache[16] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_timezone_policy = (SktAccount.TIMEZONEPOLICY)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_TIMEZONE_POLICY = " + cache_timezone_policy.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_TIMEZONE_POLICY - update without value");
                skypeRef.events.FireOnAccountTimezonePolicy(this, cache_timezone_policy);
                break;

            case 166: /* Account.P_WEBPRESENCE_POLICY */
                cache[17] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_webpresence_policy = (SktAccount.WEBPRESENCEPOLICY)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_WEBPRESENCE_POLICY = " + cache_webpresence_policy.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_WEBPRESENCE_POLICY - update without value");
                skypeRef.events.FireOnAccountWebpresencePolicy(this, cache_webpresence_policy);
                break;

            case 168: /* Account.P_PHONENUMBERS_POLICY */
                cache[18] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_phonenumbers_policy = (SktAccount.PHONENUMBERSPOLICY)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_PHONENUMBERS_POLICY = " + cache_phonenumbers_policy.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_PHONENUMBERS_POLICY - update without value");
                skypeRef.events.FireOnAccountPhonenumbersPolicy(this, cache_phonenumbers_policy);
                break;

            case 169: /* Account.P_VOICEMAIL_POLICY */
                cache[19] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_voicemail_policy = (SktAccount.VOICEMAILPOLICY)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_VOICEMAIL_POLICY = " + cache_voicemail_policy.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_VOICEMAIL_POLICY - update without value");
                skypeRef.events.FireOnAccountVoicemailPolicy(this, cache_voicemail_policy);
                break;

            case 773: /* Account.P_PARTNER_OPTEDOUT */
                cache[20] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_partner_optedout = (String)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_PARTNER_OPTEDOUT = " + cache_partner_optedout.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_PARTNER_OPTEDOUT - update without value");
                skypeRef.events.FireOnAccountPartnerOptedout(this, cache_partner_optedout);
                break;

            case 800: /* Account.P_SERVICE_PROVIDER_INFO */
                cache[21] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_service_provider_info = (String)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_SERVICE_PROVIDER_INFO = " + cache_service_provider_info.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_SERVICE_PROVIDER_INFO - update without value");
                skypeRef.events.FireOnAccountServiceProviderInfo(this, cache_service_provider_info);
                break;

            case 801: /* Account.P_REGISTRATION_TIMESTAMP */
                cache[22] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_registration_timestamp = (uint)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_REGISTRATION_TIMESTAMP = " + cache_registration_timestamp.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_REGISTRATION_TIMESTAMP - update without value");
                skypeRef.events.FireOnAccountRegistrationTimestamp(this, skypeRef.UnixTimestampToDateTime(cache_registration_timestamp));
                break;

            case 802: /* Account.P_NR_OF_OTHER_INSTANCES */
                cache[23] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_nr_of_other_instances = (uint)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_NR_OF_OTHER_INSTANCES = " + cache_nr_of_other_instances.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_NR_OF_OTHER_INSTANCES - update without value");
                skypeRef.events.FireOnAccountNrOfOtherInstances(this, cache_nr_of_other_instances);
                break;

            case 4: /* Account.P_SKYPENAME */
                cache[24] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_skypename = (String)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_SKYPENAME = " + cache_skypename.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_SKYPENAME - update without value");
                skypeRef.events.FireOnAccountSkypename(this, cache_skypename);
                break;

            case 5: /* Account.P_FULLNAME */
                cache[25] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_fullname = (String)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_FULLNAME = " + cache_fullname.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_FULLNAME - update without value");
                skypeRef.events.FireOnAccountFullname(this, cache_fullname);
                break;

            case 7: /* Account.P_BIRTHDAY */
                cache[26] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_birthday = (uint)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_BIRTHDAY = " + cache_birthday.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_BIRTHDAY - update without value");
                skypeRef.events.FireOnAccountBirthday(this, cache_birthday);
                break;

            case 8: /* Account.P_GENDER */
                cache[27] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_gender = (uint)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_GENDER = " + cache_gender.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_GENDER - update without value");
                skypeRef.events.FireOnAccountGender(this, cache_gender);
                break;

            case 9: /* Account.P_LANGUAGES */
                cache[28] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_languages = (String)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_LANGUAGES = " + cache_languages.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_LANGUAGES - update without value");
                skypeRef.events.FireOnAccountLanguages(this, cache_languages);
                break;

            case 10: /* Account.P_COUNTRY */
                cache[29] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_country = (String)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_COUNTRY = " + cache_country.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_COUNTRY - update without value");
                skypeRef.events.FireOnAccountCountry(this, cache_country);
                break;

            case 11: /* Account.P_PROVINCE */
                cache[30] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_province = (String)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_PROVINCE = " + cache_province.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_PROVINCE - update without value");
                skypeRef.events.FireOnAccountProvince(this, cache_province);
                break;

            case 12: /* Account.P_CITY */
                cache[31] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_city = (String)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_CITY = " + cache_city.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_CITY - update without value");
                skypeRef.events.FireOnAccountCity(this, cache_city);
                break;

            case 13: /* Account.P_PHONE_HOME */
                cache[32] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_phone_home = (String)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_PHONE_HOME = " + cache_phone_home.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_PHONE_HOME - update without value");
                skypeRef.events.FireOnAccountPhoneHome(this, cache_phone_home);
                break;

            case 14: /* Account.P_PHONE_OFFICE */
                cache[33] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_phone_office = (String)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_PHONE_OFFICE = " + cache_phone_office.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_PHONE_OFFICE - update without value");
                skypeRef.events.FireOnAccountPhoneOffice(this, cache_phone_office);
                break;

            case 15: /* Account.P_PHONE_MOBILE */
                cache[34] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_phone_mobile = (String)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_PHONE_MOBILE = " + cache_phone_mobile.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_PHONE_MOBILE - update without value");
                skypeRef.events.FireOnAccountPhoneMobile(this, cache_phone_mobile);
                break;

            case 16: /* Account.P_EMAILS */
                cache[35] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_emails = (String)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_EMAILS = " + cache_emails.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_EMAILS - update without value");
                skypeRef.events.FireOnAccountEmails(this, cache_emails);
                break;

            case 17: /* Account.P_HOMEPAGE */
                cache[36] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_homepage = (String)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_HOMEPAGE = " + cache_homepage.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_HOMEPAGE - update without value");
                skypeRef.events.FireOnAccountHomepage(this, cache_homepage);
                break;

            case 18: /* Account.P_ABOUT */
                cache[37] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_about = (String)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_ABOUT = " + cache_about.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_ABOUT - update without value");
                skypeRef.events.FireOnAccountAbout(this, cache_about);
                break;

            case 19: /* Account.P_PROFILE_TIMESTAMP */
                cache[38] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_profile_timestamp = (uint)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_PROFILE_TIMESTAMP = " + cache_profile_timestamp.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_PROFILE_TIMESTAMP - update without value");
                skypeRef.events.FireOnAccountProfileTimestamp(this, skypeRef.UnixTimestampToDateTime(cache_profile_timestamp));
                break;

            case 26: /* Account.P_MOOD_TEXT */
                cache[39] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_mood_text = (String)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_MOOD_TEXT = " + cache_mood_text.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_MOOD_TEXT - update without value");
                skypeRef.events.FireOnAccountMoodText(this, cache_mood_text);
                break;

            case 27: /* Account.P_TIMEZONE */
                cache[40] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_timezone = (uint)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_TIMEZONE = " + cache_timezone.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_TIMEZONE - update without value");
                skypeRef.events.FireOnAccountTimezone(this, cache_timezone);
                break;

            case 28: /* Account.P_NROF_AUTHED_BUDDIES */
                cache[41] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_nrof_authed_buddies = (uint)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_NROF_AUTHED_BUDDIES = " + cache_nrof_authed_buddies.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_NROF_AUTHED_BUDDIES - update without value");
                skypeRef.events.FireOnAccountNrofAuthedBuddies(this, cache_nrof_authed_buddies);
                break;

            case 34: /* Account.P_AVAILABILITY */
                cache[42] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_availability = (SktContact.AVAILABILITY)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_AVAILABILITY = " + cache_availability.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_AVAILABILITY - update without value");
                skypeRef.events.FireOnAccountAvailability(this, cache_availability);
                break;

            case 37: /* Account.P_AVATAR_IMAGE */
                cache[43] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_avatar_image = (byte[])value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_AVATAR_IMAGE = binary size " + cache_avatar_image.Length.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_AVATAR_IMAGE - update without value");
                skypeRef.events.FireOnAccountAvatarImage(this, cache_avatar_image);
                break;

            case 182: /* Account.P_AVATAR_TIMESTAMP */
                cache[44] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_avatar_timestamp = (uint)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_AVATAR_TIMESTAMP = " + cache_avatar_timestamp.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_AVATAR_TIMESTAMP - update without value");
                skypeRef.events.FireOnAccountAvatarTimestamp(this, skypeRef.UnixTimestampToDateTime(cache_avatar_timestamp));
                break;

            case 183: /* Account.P_MOOD_TIMESTAMP */
                cache[45] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_mood_timestamp = (uint)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_MOOD_TIMESTAMP = " + cache_mood_timestamp.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_MOOD_TIMESTAMP - update without value");
                skypeRef.events.FireOnAccountMoodTimestamp(this, skypeRef.UnixTimestampToDateTime(cache_mood_timestamp));
                break;

            case 205: /* Account.P_RICH_MOOD_TEXT */
                cache[46] = hasValue; // if no value - invalidate cache
                if (hasValue)
                {
                    cache_rich_mood_text = (String)value;
                    if (skypeRef.logging) skypeRef.Log("Account.P_RICH_MOOD_TEXT = " + cache_rich_mood_text.ToString());
                }
                else if (skypeRef.logging) skypeRef.Log("Account.P_RICH_MOOD_TEXT - update without value");
                skypeRef.events.FireOnAccountRichMoodText(this, cache_rich_mood_text);
                break;

            default:
                skypeRef.Error(String.Format("Invalid Account class property ID ({0})received from socket.", propId)); break;
            }
        }