public DescribeStacksResult Unmarshall(JsonUnmarshallerContext context) { if (context.CurrentTokenType == JsonUnmarshallerContext.TokenType.Null) { return(null); } DescribeStacksResult describeStacksResult = new DescribeStacksResult(); describeStacksResult.Stacks = null; int originalDepth = context.CurrentDepth; int targetDepth = originalDepth + 1; while (context.Read()) { if ((context.IsKey) && (context.CurrentDepth == targetDepth)) { context.Read(); context.Read(); if (context.TestExpression("Stacks", targetDepth)) { describeStacksResult.Stacks = new List <Stack>(); StackUnmarshaller unmarshaller = StackUnmarshaller.GetInstance(); while (context.Read()) { if ((context.IsArrayElement) && (context.CurrentDepth == targetDepth)) { describeStacksResult.Stacks.Add(unmarshaller.Unmarshall(context)); } else if (context.IsEndArray) { break; } } continue; } } else if (context.IsEndElement && context.CurrentDepth <= originalDepth) { return(describeStacksResult); } } return(describeStacksResult); }
public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context) { DescribeStacksResponse response = new DescribeStacksResponse(); context.Read(); int targetDepth = context.CurrentDepth; while (context.ReadAtDepth(targetDepth)) { if (context.TestExpression("Stacks", targetDepth)) { var unmarshaller = new ListUnmarshaller <Stack, StackUnmarshaller>( StackUnmarshaller.GetInstance()); response.Stacks = unmarshaller.Unmarshall(context); continue; } } return(response); }
private static void UnmarshallResult(JsonUnmarshallerContext context, DescribeStacksResponse response) { int originalDepth = context.CurrentDepth; int targetDepth = originalDepth + 1; while (context.Read()) { if (context.TestExpression("Stacks", targetDepth)) { context.Read(); response.Stacks = new List <Stack>(); StackUnmarshaller unmarshaller = StackUnmarshaller.GetInstance(); while (context.Read()) { JsonToken token = context.CurrentTokenType; if (token == JsonToken.ArrayStart) { continue; } if (token == JsonToken.ArrayEnd) { break; } response.Stacks.Add(unmarshaller.Unmarshall(context)); } continue; } if (context.CurrentDepth <= originalDepth) { return; } } return; }