ValidatingPropertiesEventArgs クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ValidatingProperties イベントのデータを提供します。
public ref class ValidatingPropertiesEventArgs : EventArgs
public class ValidatingPropertiesEventArgs : EventArgs
type ValidatingPropertiesEventArgs = class
inherit EventArgs
Public Class ValidatingPropertiesEventArgs
Inherits EventArgs
- 継承
例
次の例は、 イベントのイベント ハンドラーを 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) |
適用対象
.NET