Aracılığıyla paylaş


ListViewUpdatedEventArgs.Exception Özellik

Tanım

Varsa, güncelleştirme işlemi sırasında oluşturulan özel durumu alır.

public:
 property Exception ^ Exception { Exception ^ get(); };
public Exception Exception { get; }
member this.Exception : Exception
Public ReadOnly Property Exception As Exception

Özellik Değeri

Varsa güncelleştirme işlemi sırasında oluşturulan özel durum; özel durum tetiklendiyse, null.

Örnekler

Aşağıdaki örnekte, bir güncelleştirme işlemi sırasında özel durumun oluşup oluşmadığını belirlemek için özelliğinin nasıl kullanılacağı Exception gösterilmektedir. Bu kod örneği, sınıfı için ListViewUpdatedEventArgs sağlanan daha büyük bir örneğin parçasıdır.

void ContactsListView_ItemUpdated(Object sender, ListViewUpdatedEventArgs e)
{
    if (e.Exception != null)
    {
        if (e.AffectedRows == 0)
        {
            e.KeepInEditMode = true;
            Message.Text = "An exception occurred updating the contact. " +
                                "Please verify your values and try again.";
        }
        else
            Message.Text = "An exception occurred updating the contact. " +
                                "Please verify the values in the recently updated item.";

        e.ExceptionHandled = true;
    }
}
Sub ContactsListView_ItemUpdated(sender As Object, e As ListViewUpdatedEventArgs)
    If e.Exception IsNot Nothing Then
        If e.AffectedRows = 0 Then
            e.KeepInEditMode = True
            Message.Text = "An exception occurred updating the contact. " & _
                                "Please verify your values and try again."
        Else
            Message.Text = "An exception occurred updating the contact. " & _
                                "Please verify the values in the recently updated item."
        End If

        e.ExceptionHandled = True
    End If
End Sub

Açıklamalar

Exception Güncelleştirme işlemi sırasında oluşturulan özel durumu (varsa) belirlemek için özelliğini kullanın. Hiçbir özel durum tetiklendiyse, bu özellik döndürür null.

Not

Bir özel durum oluşturulduysa ve olay işleyicisinde özel durumu işlerseniz özelliğini olarak trueayarlayınExceptionHandled. Aksi takdirde, ListView denetim özel durumu yeniden oluşturur.

Şunlara uygulanır

Ayrıca bkz.