本文整理汇总了C#中Profile.Save方法的典型用法代码示例。如果您正苦于以下问题:C# Profile.Save方法的具体用法?C# Profile.Save怎么用?C# Profile.Save使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Profile
的用法示例。
在下文中一共展示了Profile.Save方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: SetPropertyValues
/// <summary>
/// Sets the property values.
/// </summary>
/// <param name="sc">The sc.</param>
/// <param name="properties">The properties.</param>
public override void SetPropertyValues(System.Configuration.SettingsContext sc, SettingsPropertyValueCollection properties)
{
string objValue = (string)sc["UserName"];
bool userIsAuthenticated = (bool)sc["IsAuthenticated"];
if (((objValue != null) && (objValue.Length >= 1)) && (properties.Count >= 1))
{
string allNames = string.Empty;
string allValues = string.Empty;
byte[] buf = null;
PrepareDataForSaving(ref allNames, ref allValues, ref buf, true, properties, userIsAuthenticated);
if (allNames.Length != 0)
{
using (var session = Database.Context.CurrentSession)
{
using (var tx = session.BeginTransaction())
{
Profile p = new Profile();
p.User = UserLogic.GetUser(session, objValue);
p.PropertyNames = allNames;
p.PropertyValuesBinary = buf;
p.PropertyValuesString = allValues;
p.LastActivityDate = DateTime.Now;
p.Save(session, tx);
}
}
}
}
}