PostAssembleDocumentDelegate Delegate
This delegate type allows a host application to request notification immediately following the SDK assembling a document during the execution of the WorkSession.AssembleDocuments method.

Namespace: HotDocs.Sdk.Server
Assembly: HotDocs.Sdk.Server (in HotDocs.Sdk.Server.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public delegate void PostAssembleDocumentDelegate(
	Template template,
	AssembleDocumentResult result,
	Object userState
)

Parameters

template
Type: HotDocs.Sdk Template
The Template from which a new document was just assembled.
result
Type: HotDocs.Sdk.Server AssembleDocumentResult
The AssemblyResult object associated with the assembled document. The SDK has not yet processed this AssemblyResult. The Document inside the result will be added to the Document array that will eventually be returned by AssembleDocuments. The Answers will become the new answers for subsequent work in this WorkSession.
userState
Type: OnlineSystem Object
Whatever state object is passed by the host application into WorkSession.AssembleDocuments will be passed back out to the host application in this userState parameter.
See Also