IServices GetAnswers Method
This method overlays any answer collections passed into it, into a single XML answer collection. It has two primary uses: it can be used to combine multiple answer collections into a single answer collection; and/or it can be used to "resolve" or standardize an answer collection submitted from a browser interview (which may be specially encoded) into standard XML answers.

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

string GetAnswers(
	IEnumerable<TextReader> answers,
	string logRef
)

Parameters

answers
Type: OnlineSystem.Collections.Generic IEnumerable OnlineTextReader 
A sequence of answer collections. Each member of this sequence must be either an (encoded) interview answer collection or a regular XML answer collection. Each member will be successively overlaid (overlapped) on top of the prior members to form one consolidated answer collection.
logRef
Type: OnlineSystem String
A string identifying the current user or transcation, to be included in HotDocs log entries. This is necessary if you wish to track log entries back to specific users during analysis or troubleshooting.

Return Value

Type: OnlineString
The consolidated XML answer collection.
See Also