Condividi tramite


Proprietà DataRepeaterDataErrorEventArgs.Exception

ottiene Exception che rappresenta l'errore.

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

Sintassi

'Dichiarazione
Public ReadOnly Property Exception As Exception
public Exception Exception { get; }
public:
property Exception^ Exception {
    Exception^ get ();
}
member Exception : Exception
function get Exception () : Exception

Valore proprietà

Tipo: System.Exception
L'oggetto di eccezione che rappresenta l'errore.

Note

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

Exception la proprietà contiene informazioni sull'errore che può essere utilizzato per richiedere all'utente una correzione o scrivere nel log degli errori.

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)