private static void UnmarshallResult(XmlUnmarshallerContext context, CreateHealthCheckResponse response) { int originalDepth = context.CurrentDepth; int targetDepth = originalDepth + 1; if (context.IsStartOfDocument) targetDepth += 1; while (context.Read()) { if (context.IsStartElement || context.IsAttribute) { if (context.TestExpression("HealthCheck", targetDepth)) { var unmarshaller = HealthCheckUnmarshaller.Instance; response.HealthCheck = unmarshaller.Unmarshall(context); continue; } } else if (context.IsEndElement && context.CurrentDepth < originalDepth) { return; } } return; }
private static void UnmarshallResult(XmlUnmarshallerContext context,CreateHealthCheckResponse response) { int originalDepth = context.CurrentDepth; int targetDepth = originalDepth + 1; if (context.IsStartOfDocument) targetDepth += 2; while (context.Read()) { if (context.IsStartElement || context.IsAttribute) { if (context.TestExpression("HealthCheck", targetDepth)) { response.HealthCheck = HealthCheckUnmarshaller.GetInstance().Unmarshall(context); continue; } } else if (context.IsEndElement && context.CurrentDepth < originalDepth) { return; } } IWebResponseData responseData = context.ResponseData; if (responseData.IsHeaderPresent("Location")) response.Location = responseData.GetHeaderValue("Location"); return; }
/// <summary> /// Unmarshaller the response from the service to the response class. /// </summary> /// <param name="context"></param> /// <returns></returns> public override AmazonWebServiceResponse Unmarshall(XmlUnmarshallerContext context) { CreateHealthCheckResponse response = new CreateHealthCheckResponse(); UnmarshallResult(context,response); if (context.ResponseData.IsHeaderPresent("Location")) response.Location = context.ResponseData.GetHeaderValue("Location"); return response; }
public override AmazonWebServiceResponse Unmarshall(XmlUnmarshallerContext context) { CreateHealthCheckResponse response = new CreateHealthCheckResponse(); while (context.Read()) { if (context.IsStartElement) { response.CreateHealthCheckResult = CreateHealthCheckResultUnmarshaller.GetInstance().Unmarshall(context); break; } } return response; }
public override AmazonWebServiceResponse Unmarshall(XmlUnmarshallerContext context) { CreateHealthCheckResponse response = new CreateHealthCheckResponse(); while (context.Read()) { if (context.IsStartElement) { UnmarshallResult(context,response); break; } } return response; }