ContentIterator.FileProcessorErrorCallout 委托
表示一个委托处理处理文件时出现的错误。
命名空间: Microsoft.Office.Server.Utilities
程序集: Microsoft.Office.Server(位于 Microsoft.Office.Server.dll 中)
语法
声明
Public Delegate Function FileProcessorErrorCallout ( _
file As SPFile, _
e As Exception _
) As Boolean
用法
Dim instance As New FileProcessorErrorCallout(AddressOf HandlerMethod)
public delegate bool FileProcessorErrorCallout(
SPFile file,
Exception e
)
参数
- file
类型:Microsoft.SharePoint.SPFile
- e
类型:System.Exception
返回值
类型:System.Boolean
true如果应再次为引发异常否则为false。
备注
这种类型的委托,可以 (可选) 传递给ProcessFile方法的ProcessFiles方法, ProcessFilesInFolder方法。如果在处理文件时引发任何异常,将调用此委托。