Survey Response XML Serializer


Use XmlSurveyResponseRepository in MentorLogic.Engines.Zodiac.Repository namespace to serialize and deserialize the XML definition of Zodiac.NET survey responses.

You can also serialize the survey response objects to XML text:


string xml = XmlSurveyResponseRepository.SerializeResponse(surveyResponseObj)

You can deserialize the survey response XML definition to SurveyResponse typed data object:


SurveyResponse surveyResponseObj = XmlSurveyResponseRepository.DeserializeResponse(xml);