ValidatingPropertiesEventArgs.Properties 属性

定义

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

public:
 property System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ Properties { System::Collections::Generic::IDictionary<System::String ^, System::Object ^> ^ get(); };
public System.Collections.Generic.IDictionary<string,object> Properties { get; }
member this.Properties : System.Collections.Generic.IDictionary<string, obj>
Public ReadOnly Property Properties As IDictionary(Of String, Object)

属性值

要验证的配置文件属性的名称和值。

示例

以下示例演示事件的事件处理程序 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

注解

属性 Properties 返回一个 IDictionary 对象,该对象包含要为用户设置的配置文件属性的名称和值。 如果为 ValidatingProperties 事件创建事件处理程序,则可以检索属性以从 属性 Properties 进行验证。 如果任何值未通过验证,请将其添加到 FailedProperties 属性。 方法 SetPropertiesForCurrentUser 返回 属性中的 FailedProperties 集合,以便您可以确定哪些属性未通过验证。

适用于