private static void UnmarshallResult(XmlUnmarshallerContext context, UpdateConfigurationTemplateResponse response)
{
int originalDepth = context.CurrentDepth;
int targetDepth = originalDepth + 1;
if (context.IsStartOfDocument)
targetDepth += 2;
while (context.ReadAtDepth(originalDepth))
{
if (context.IsStartElement || context.IsAttribute)
{
if (context.TestExpression("ApplicationName", targetDepth))
{
var unmarshaller = StringUnmarshaller.Instance;
response.ApplicationName = unmarshaller.Unmarshall(context);
continue;
}
if (context.TestExpression("DateCreated", targetDepth))
{
var unmarshaller = DateTimeUnmarshaller.Instance;
response.DateCreated = unmarshaller.Unmarshall(context);
continue;
}
if (context.TestExpression("DateUpdated", targetDepth))
{
var unmarshaller = DateTimeUnmarshaller.Instance;
response.DateUpdated = unmarshaller.Unmarshall(context);
continue;
}
if (context.TestExpression("DeploymentStatus", targetDepth))
{
var unmarshaller = StringUnmarshaller.Instance;
response.DeploymentStatus = unmarshaller.Unmarshall(context);
continue;
}
if (context.TestExpression("Description", targetDepth))
{
var unmarshaller = StringUnmarshaller.Instance;
response.Description = unmarshaller.Unmarshall(context);
continue;
}
if (context.TestExpression("EnvironmentName", targetDepth))
{
var unmarshaller = StringUnmarshaller.Instance;
response.EnvironmentName = unmarshaller.Unmarshall(context);
continue;
}
if (context.TestExpression("OptionSettings/member", targetDepth))
{
var unmarshaller = ConfigurationOptionSettingUnmarshaller.Instance;
var item = unmarshaller.Unmarshall(context);
response.OptionSettings.Add(item);
continue;
}
if (context.TestExpression("SolutionStackName", targetDepth))
{
var unmarshaller = StringUnmarshaller.Instance;
response.SolutionStackName = unmarshaller.Unmarshall(context);
continue;
}
if (context.TestExpression("TemplateName", targetDepth))
{
var unmarshaller = StringUnmarshaller.Instance;
response.TemplateName = unmarshaller.Unmarshall(context);
continue;
}
}
}
return;
}