xquery.xpath.DeliveryFormat
¶
The xpath.DeliveryFormat enumeration controls the delivery of the xslt and xquery final results, including the optional serialization and saving steps.
Constants¶
- xquery.xpath.DeliveryFormat.AUTO
Will decide between DOCUMENT or RAW based on the build-tree attribute
- xquery.xpath.DeliveryFormat.DOCUMENT
The returned sequence will contain the xslt result wrapped with an implicitly created document node.
- xquery.xpath.DeliveryFormat.SERIALIZED
A string, representing the results of serialization (without the final encoding stage), will be returned in the result sequence.
- xquery.xpath.DeliveryFormat.SAVED
The result is serialized and written to the output-uri. The result sequence will contain a string, representing the output-uri.
- xquery.xpath.DeliveryFormat.RAW
The raw result will be delivered in the result sequence.