Condividi tramite


Proprietà DataRepeaterDataErrorEventArgs.ThrowException

Ottiene o imposta un valore che indica se generare un'eccezione dopo l'uscita dell'esecuzione del codice dal gestore eventi di DataError.

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: Boolean
true se viene prodotta l'eccezione; in caso contrario, false.Il valore predefinito è false.

Note

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

La proprietà di ThrowException 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 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)