ValidatingPropertiesEventArgs 类

定义

ValidatingProperties 事件提供数据。

public ref class ValidatingPropertiesEventArgs : EventArgs
public class ValidatingPropertiesEventArgs : EventArgs
type ValidatingPropertiesEventArgs = class
    inherit EventArgs
Public Class ValidatingPropertiesEventArgs
Inherits EventArgs
继承
ValidatingPropertiesEventArgs

示例

以下示例演示事件的事件处理程序 ValidatingProperties 。 当为 FirstName 属性传递的值为空或 null时,该 FirstName 属性将添加到集合中 FailedProperties

void Application_Start(object sender, EventArgs e) 
{
    System.Web.ApplicationServices.ProfileService.ValidatingProperties += new EventHandler<System.Web.ApplicationServices.ValidatingPropertiesEventArgs>(ProfileService_ValidatingProperties);
}

void ProfileService_ValidatingProperties(object sender, System.Web.ApplicationServices.ValidatingPropertiesEventArgs e)
{
    if (String.IsNullOrEmpty((string)e.Properties["FirstName"]))
    {
        e.FailedProperties.Add("FirstName");
    }
}
Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs)
    AddHandler System.Web.ApplicationServices.ProfileService.ValidatingProperties, _
      AddressOf ProfileService_ValidatingProperties
End Sub

Sub ProfileService_ValidatingProperties(ByVal sender As Object, ByVal e As System.Web.ApplicationServices.ValidatingPropertiesEventArgs)
    If (String.IsNullOrEmpty(CType(e.Properties("FirstName"), String))) Then
        e.FailedProperties.Add("FirstName")
    End If
End Sub

注解

为事件创建事件处理程序, ValidatingProperties 以自定义验证配置文件属性值的方式。 为 ValidatingProperties 用户设置配置文件属性时,将引发 该事件。 如果任何属性值未通过验证,请将其添加到 属性中的 集合。FailedProperties 方法 SetPropertiesForCurrentUser 返回 属性中的 FailedProperties 集合,以便您可以确定哪些属性未通过验证。

属性

FailedProperties

获取包含未通过验证的配置文件属性的集合。

Properties

获取要验证的配置文件属性的名称和值的集合。

方法

Equals(Object)

确定指定对象是否等于当前对象。

(继承自 Object)
GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetType()

获取当前实例的 Type

(继承自 Object)
MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
ToString()

返回表示当前对象的字符串。

(继承自 Object)

适用于