ContentIterator.ItemProcessorErrorCallout Delegate
Provides logging information when processing items in a list by using a ContentIterator object.
Namespace: Microsoft.Office.Server.Utilities
Assembly: Microsoft.Office.Server (in Microsoft.Office.Server.dll)
Syntax
'Declaration
Public Delegate Function ItemProcessorErrorCallout ( _
item As SPListItem, _
e As Exception _
) As Boolean
'Usage
Dim instance As New ItemProcessorErrorCallout(AddressOf HandlerMethod)
public delegate bool ItemProcessorErrorCallout(
SPListItem item,
Exception e
)
Parameters
- item
Type: Microsoft.SharePoint.SPListItem
The item that caused the processing error.
- e
Type: System.Exception
Contains information about the processing error.
Return Value
Type: System.Boolean
true if the exception should be thrown again; otherwise false.