Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Provides customization of file content after it has been sent to the document converter.
Namespace: Microsoft.SharePoint
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: No
Syntax
'Declaration
Sub PostProcess ( _
request As SPExecutingConversionRequest, _
result As CreateDCInfo, _
<OutAttribute> ByRef runDefaultPostProcessing As Boolean _
)
'Usage
Dim instance As ISPConversionProcessor
Dim request As SPExecutingConversionRequest
Dim result As CreateDCInfo
Dim runDefaultPostProcessing As Boolean
instance.PostProcess(request, result, _
runDefaultPostProcessing)
void PostProcess(
SPExecutingConversionRequest request,
CreateDCInfo result,
out bool runDefaultPostProcessing
)
Parameters
request
Type: Microsoft.SharePoint.SPExecutingConversionRequestAn SPExecutingConversionRequest object that conveys the context of the conversion.
result
Type: Microsoft.HtmlTrans.CreateDCInfoA CreateDCInfo object that contains return code from the converter as well as converted files in the form of byte arrays.
runDefaultPostProcessing
Type: System.BooleanA Boolean value that specifies whether the conversion framework will continue processing, i.e., whether to save the resulting Byte array in a file. If not, it is assumed that the PostProcess method has consumed the contents of the Byte array.
See Also
Reference
ISPConversionProcessor Interface