本文整理匯總了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"));
}