private static void UnmarshallResult(XmlUnmarshallerContext context, GetShippingLabelResponse 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("ShippingLabelURL", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.ShippingLabelURL = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("Warning", targetDepth)) { var unmarshaller = StringUnmarshaller.Instance; response.Warning = unmarshaller.Unmarshall(context); continue; } } } return; }
public override AmazonWebServiceResponse Unmarshall(XmlUnmarshallerContext context) { GetShippingLabelResponse response = new GetShippingLabelResponse(); context.Read(); int targetDepth = context.CurrentDepth; while (context.ReadAtDepth(targetDepth)) { if (context.IsStartElement) { if(context.TestExpression("GetShippingLabelResult", 2)) { UnmarshallResult(context, response); continue; } if (context.TestExpression("ResponseMetadata", 2)) { response.ResponseMetadata = ResponseMetadataUnmarshaller.Instance.Unmarshall(context); } } } return response; }