當前位置: 首頁>>代碼示例>>C#>>正文


C# Account.SetProfile方法代碼示例

本文整理匯總了C#中Account.SetProfile方法的典型用法代碼示例。如果您正苦於以下問題:C# Account.SetProfile方法的具體用法?C# Account.SetProfile怎麽用?C# Account.SetProfile使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Account的用法示例。


在下文中一共展示了Account.SetProfile方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: Profile

        public void Profile()
        {
            var a = new Account(this.RandomString());
            Assert.IsNullOrEmpty(a.GetProfile("test"));
            a.SetProfile("test", "test");
            Assert.AreEqual("test", a.GetProfile("test"));

            this._accountService.Create(a);

            this.Evict(a);

            var a2 = this._accountService.GetAccount(a.ID);
            Assert.AreEqual("test", a2.GetProfile("test"));
        }
開發者ID:sunleepy,項目名稱:cooper,代碼行數:14,代碼來源:AccountTest.cs

示例2: UpdateSorts

        private void UpdateSorts(Account account
            , string by
            , string sorts
            , IDictionary<string, string> idChanges
            , Func<bool> isPersonalSorts
            , Func<string, string> getPersonalSortKey
            , Action<string> saveSorts)
        {
            //沒有變更則無需提交排序數據
            if (string.IsNullOrWhiteSpace(sorts) || sorts == "null") return;

            var temp = _serializer.JsonDeserialize<Sort[]>(sorts);
            foreach (var s in temp)
            {
                s.Indexs = s.Indexs.Where(o =>
                    !string.IsNullOrWhiteSpace(o)).Distinct().ToArray();
                for (var i = 0; i < s.Indexs.Length; i++)
                    //修正索引中含有的臨時標識
                    if (s.Indexs[i].StartsWith(TEMP) && idChanges.ContainsKey(s.Indexs[i]))
                        s.Indexs[i] = idChanges[s.Indexs[i]];
            }
            try
            {
                var d = _serializer.JsonSerialize(temp);

                if (isPersonalSorts())
                {
                    //更新排序信息至用戶設置
                    account.SetProfile(getPersonalSortKey(by), d);
                    this._accountService.Update(account);
                    if (this._log.IsDebugEnabled)
                        this._log.DebugFormat("將{0}排序數據保存至當前用戶", by);
                }
                else
                    //更新排序信息到非個人存儲區域
                    saveSorts(d);

                if (this._log.IsDebugEnabled)
                    this._log.DebugFormat("修正後的排序數據為:{0}|{1}", by, d);
            }
            catch (Exception e)
            {
                this._log.Error(string.Format("保存排序信息時異常"), e);
            }
        }
開發者ID:codesharp,項目名稱:cooper,代碼行數:45,代碼來源:TaskController.cs

示例3: ProfileUpdate

        public void ProfileUpdate()
        {
            var a = new Account(this.RandomString());
            //未初始化profile
            this._accountService.Create(a);
            //此時才初始化profile
            a.SetProfile("test", "test");
            this._accountService.Update(a);

            this.Evict(a);

            var a2 = this._accountService.GetAccount(a.ID);
            Assert.AreEqual("test", a2.GetProfile("test"));
        }
開發者ID:sunleepy,項目名稱:cooper,代碼行數:14,代碼來源:AccountTest.cs


注:本文中的Account.SetProfile方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。