当前位置: 首页>>代码示例>>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;未经允许,请勿转载。