Condividi tramite


Proprietà DataRepeaterDataErrorEventArgs.ThrowException

Ottiene o imposta un valore che indica se generare un'eccezione dopo l'esecuzione di codice esce da DataError gestore eventi.

Spazio dei nomi:  Microsoft.VisualBasic.PowerPacks
Assembly:  Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)

Sintassi

'Dichiarazione
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)

Valore proprietà

Tipo: System.Boolean
true se viene generata un'eccezione; in caso contrario, false.l'impostazione predefinita è false.

Note

DataError l'evento consente di gestire le eccezioni generate nel codice chiamato da un oggetto DataRepeater controllare durante le operazioni di elaborazione dati.

ThrowException la proprietà può essere utilizzata per generare Exception se l'errore dati non è corretto dall'utente.

Esempi

Nell'esempio seguente viene illustrato come utilizzare i dati da un oggetto DataRepeaterDataErrorEventArgs per visualizzare un messaggio quando un errore dati.

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;
}

Sicurezza di .NET Framework

Vedere anche

Riferimenti

DataRepeaterDataErrorEventArgs Classe

Spazio dei nomi Microsoft.VisualBasic.PowerPacks

DataError

Altre risorse

Introduzione al controllo DataRepeater (Visual Studio)