ProfileAutoSaveEventArgs.ContinueWithProfileAutoSave 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值指示 ProfileModule 是否将自动保存用户配置文件。
public:
property bool ContinueWithProfileAutoSave { bool get(); void set(bool value); };
public bool ContinueWithProfileAutoSave { get; set; }
member this.ContinueWithProfileAutoSave : bool with get, set
Public Property ContinueWithProfileAutoSave As Boolean
属性值
如果 ProfileModule 将自动保存用户配置文件,则为 true
;否则为 false
。 默认值为 true
。
示例
下面的代码示例演示 ProfileAutoSaving ASP.NET 应用程序的 Global.asax 文件中包含的 事件。
public void Profile_ProfileAutoSaving(object sender, ProfileAutoSaveEventArgs args)
{
if (Profile.Cart.HasChanged)
args.ContinueWithProfileAutoSave = true;
else
args.ContinueWithProfileAutoSave = false;
}
Public Sub Profile_ProfileAutoSaving(sender As Object, args As ProfileAutoSaveEventArgs)
If Profile.Cart.HasChanged Then
args.ContinueWithProfileAutoSave = True
Else
args.ContinueWithProfileAutoSave = False
End If
End Sub
注解
方法Save通过检查IsDirty用户配置文件中每个SettingsPropertyValue元素的属性值,自动确定由基元类型、字符串或DateTime对象组成的属性是否已更改。 方法 Save 无法显式确定自定义类是否已更改。 可以使用 ProfileAutoSaving 事件来确定自定义对象是否已修改,然后继续自动保存(如果对象已修改)或取消自动保存(如果对象尚未修改)。
若要取消自动配置文件保存操作,请在 ContinueWithProfileAutoSave 事件中ProfileAutoSaving将 属性设置为 false
;否则,将 ContinueWithProfileAutoSave 属性设置为 true
。
事件可能有多个订阅者 ProfileAutoSaving 。 ProfileModule将使用属性设置为的最后一个值ContinueWithProfileAutoSave。 因此,无论是取消还是继续自动保存,建议在 事件中ProfileAutoSaving显式设置 ContinueWithProfileAutoSave 属性,因为可能需要覆盖早期订阅者设置的值。