本文整理汇总了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"));
}
示例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);
}
}
示例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"));
}