/// <summary> /// Unmarshaller the response from the service to the response class. /// </summary> /// <param name="context"></param> /// <returns></returns> public override AmazonWebServiceResponse Unmarshall(XmlUnmarshallerContext context) { PublishFunctionResponse response = new PublishFunctionResponse(); UnmarshallResult(context, response); return(response); }
private static void UnmarshallResult(XmlUnmarshallerContext context, PublishFunctionResponse response) { int originalDepth = context.CurrentDepth; int targetDepth = originalDepth + 1; while (context.Read()) { if (context.IsStartElement || context.IsAttribute) { if (context.TestExpression("FunctionSummary", targetDepth)) { var unmarshaller = FunctionSummaryUnmarshaller.Instance; response.FunctionSummary = unmarshaller.Unmarshall(context); continue; } } else if (context.IsEndElement && context.CurrentDepth < originalDepth) { return; } } return; }