public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context) { DescribeTrailsResponse response = new DescribeTrailsResponse(); context.Read(); UnmarshallResult(context,response); return response; }
public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context) { DescribeTrailsResponse response = new DescribeTrailsResponse(); context.Read(); int targetDepth = context.CurrentDepth; while (context.ReadAtDepth(targetDepth)) { if (context.TestExpression("trailList", targetDepth)) { var unmarshaller = new ListUnmarshaller<Trail, TrailUnmarshaller>(TrailUnmarshaller.Instance); response.TrailList = unmarshaller.Unmarshall(context); continue; } } return response; }
private static void UnmarshallResult(JsonUnmarshallerContext context,DescribeTrailsResponse response) { int originalDepth = context.CurrentDepth; int targetDepth = originalDepth + 1; while (context.Read()) { if (context.TestExpression("trailList", targetDepth)) { context.Read(); if (context.CurrentTokenType == JsonToken.Null) { response.TrailList = null; continue; } response.TrailList = new List<Trail>(); TrailUnmarshaller unmarshaller = TrailUnmarshaller.GetInstance(); while (context.Read()) { JsonToken token = context.CurrentTokenType; if (token == JsonToken.ArrayStart) { continue; } if (token == JsonToken.ArrayEnd) { break; } response.TrailList.Add(unmarshaller.Unmarshall(context)); } continue; } if (context.CurrentDepth <= originalDepth) { return; } } return; }