次の方法で共有


DataRepeaterDataErrorEventArgs.ThrowException プロパティ

コードの実行後に例外をスローするかどうかを終了する DataError のイベント ハンドラーを示す値を取得または設定します。

名前空間:  Microsoft.VisualBasic.PowerPacks
アセンブリ:  Microsoft.VisualBasic.PowerPacks.Vs (Microsoft.VisualBasic.PowerPacks.Vs.dll 内)

構文

'宣言
Public Property ThrowException As Boolean
public bool ThrowException { get; set; }
public:
property bool ThrowException {
    bool get ();
    void set (bool value);
}
member ThrowException : bool with get, set
function get ThrowException () : boolean
function set ThrowException (value : boolean)

プロパティ値

型 : System.Boolean
例外がスローされた場合 true ; それ以外 false。既定値は、false です。

解説

DataError のイベントは、データ処理操作中に DataRepeater のコントロールによって呼び出されるコードでスローされた例外処理を有効にします。

エラー データがユーザーによって修正する必要 ThrowException のプロパティが Exception を発生させるために使用できます。

データ エラーが発生すると次の例では、メッセージの表示に DataRepeaterDataErrorEventArgs のデータを使用する方法を示します。

Private Sub DataRepeater1_DataError(
    ByVal sender As Object, 
    ByVal e As Microsoft.VisualBasic.PowerPacks.DataRepeaterDataErrorEventArgs
  ) Handles DataRepeater1.DataError

    Dim ErrorMsg As String
    ' Create an error string.
    ErrorMsg = "Invalid value entered for " & e.Control.Name & ". "
    ErrorMsg = ErrorMsg & e.Exception.Message
    ' Display the error to the user.
    MsgBox(ErrorMsg)
    ' Do not raise an exception.
    e.ThrowException = False
End Sub
private void dataRepeater1_DataError(object sender, 
    Microsoft.VisualBasic.PowerPacks.DataRepeaterDataErrorEventArgs e)
{
    string ErrorMsg;
    // Create an error string.
    ErrorMsg = "Invalid value entered for " + e.Control.Name + ". ";
    ErrorMsg = ErrorMsg + e.Exception.Message;
    // Display the error to the user.
    MessageBox.Show(ErrorMsg);
    // Do not raise an exception.
    e.ThrowException = false;
}

.NET Framework セキュリティ

  • 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。

参照

関連項目

DataRepeaterDataErrorEventArgs クラス

Microsoft.VisualBasic.PowerPacks 名前空間

DataError

その他の技術情報

DataRepeater コントロールの概要 (Visual Studio)