Append

Appends the specified content to the existing content of each document.

Usage

  • Append(ContextConfig content)

    Appends the string value of the returned object to to content of each document. This allows you to specify different content to append depending on the execution context.

    • content

      A delegate that returns the content to append.

  • Append(DocumentConfig content)

    Appends the string value of the returned object to to content of each document. This allows you to specify different content to append for each document depending on the input document.

    • content

      A delegate that returns the content to append.

  • Append(params IModule[] modules)

    The specified modules are executed against an empty initial document and the results are appended to the content of every input document (possibly creating more than one output document for each input document).

    • modules

      The modules to execute.

  • Append(Object content)

    Appends the string value of the specified object to the content of every input document.

    • content

      The content to append.

GitHub