Click or drag to resize
FileHandlerExtensionNotifyPrintDocumentSerialized Method
Notification send for each print/convert document when the batch operation has been serialized for later execution. Arbitrary byte[] -data can be returned which will be stored too, and then later provided at NotifyPrintDocumentDeserialized(String, String, Array). Use case for these would be providing some identification data per document to handle the correct local instances at, deserialization as the serialized process will not have any structure preparation methods called for it.

Namespace: CTExtensions.Interfaces
Assembly: CTInterface (in CTInterface.dll)
Syntax
public virtual Array NotifyPrintDocumentSerialized(
	string bsFilename,
	string bsConfiguration
)

Parameters

bsFilename
Type: SystemString
Full filename of the batch operation document
bsConfiguration
Type: SystemString
Configuration of the batch operation document

Return Value

Type: Array
Return non-null byte[] data here and it will be provided back at NotifyPrintDocumentDeserialized(String, String, Array).
Availability

CUSTOMTOOLS 2020 SP1


See Also