ContentIterator.ListProcessorErrorCallout Delegate

Delegate for handling errors processing a list.

Namespace:  Microsoft.Office.Server.Utilities
Assembly:  Microsoft.Office.Server (in Microsoft.Office.Server.dll)

Syntax

'Declaration
Public Delegate Function ListProcessorErrorCallout ( _
    list As SPList, _
    e As Exception _
) As Boolean
'Usage
Dim instance As New ListProcessorErrorCallout(AddressOf HandlerMethod)
public delegate bool ListProcessorErrorCallout(
    SPList list,
    Exception e
)

Parameters

Return Value

Type: System.Boolean
true if the exception should be thrown again; otherwise, false.

Remarks

A delegate of this type can be optionally passed to the ProcessLists method. This delegate will be called if any exception is thrown while processing list.

See Also

Reference

Microsoft.Office.Server.Utilities Namespace