ProfileAutoSaveEventArgs 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
为 ProfileAutoSaving 类的 ProfileModule 事件提供数据。
public ref class ProfileAutoSaveEventArgs sealed : EventArgs
public sealed class ProfileAutoSaveEventArgs : EventArgs
type ProfileAutoSaveEventArgs = class
inherit EventArgs
Public NotInheritable Class ProfileAutoSaveEventArgs
Inherits EventArgs
- 继承
示例
下面的代码示例演示 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
注解
委托 ProfileAutoSaveEventHandler 是为 ProfileAutoSaving 类的 ProfileModule 事件定义的。 可以在 ASP.NET 应用程序的 Global.asax 文件中访问 ProfileAutoSaving 类的 事件 ProfileModule ,如本主题的示例所示。
ProfileAutoSaving如果 ProfileManager.AutomaticSaveEnabled 属性true
为 ,则会在页面执行结束时引发 该事件。
方法Save通过检查IsDirty用户配置文件中每个SettingsPropertyValue属性的属性值,自动确定是否更改了由基元类型、字符串或DateTime对象组成的属性。 方法 Save 无法显式确定自定义类是否已更改。 可以使用 ProfileAutoSaving 事件来确定自定义对象是否已修改,如果对象已修改,则继续执行自动保存;如果对象尚未修改,则取消自动保存。
若要取消自动配置文件保存操作,请在 ContinueWithProfileAutoSave 事件中ProfileAutoSaving将 属性设置为 false
;否则,将 ContinueWithProfileAutoSave 属性设置为 true
。
事件可能有多个订阅者 ProfileAutoSaving 。 ProfileModule将使用属性设置为的最后一个值ContinueWithProfileAutoSave。 因此,无论取消还是继续自动保存,都建议在 事件中ProfileAutoSaving显式设置 ContinueWithProfileAutoSave 属性,因为可能需要覆盖早期订阅者设置的值。
构造函数
ProfileAutoSaveEventArgs(HttpContext) |
创建 ProfileAutoSaveEventArgs 类的实例。 |
属性
Context |
获取当前请求的 HttpContext。 |
ContinueWithProfileAutoSave |
获取或设置一个值,该值指示 ProfileModule 是否将自动保存用户配置文件。 |
方法
Equals(Object) |
确定指定对象是否等于当前对象。 (继承自 Object) |
GetHashCode() |
作为默认哈希函数。 (继承自 Object) |
GetType() |
获取当前实例的 Type。 (继承自 Object) |
MemberwiseClone() |
创建当前 Object 的浅表副本。 (继承自 Object) |
ToString() |
返回表示当前对象的字符串。 (继承自 Object) |