public DescribeInterconnectsResult Unmarshall(JsonUnmarshallerContext context) { if (context.CurrentTokenType == JsonUnmarshallerContext.TokenType.Null) { return(null); } DescribeInterconnectsResult describeInterconnectsResult = new DescribeInterconnectsResult(); describeInterconnectsResult.Interconnects = 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("Interconnects", targetDepth)) { describeInterconnectsResult.Interconnects = new List <Interconnect>(); InterconnectUnmarshaller unmarshaller = InterconnectUnmarshaller.GetInstance(); while (context.Read()) { if ((context.IsArrayElement) && (context.CurrentDepth == targetDepth)) { describeInterconnectsResult.Interconnects.Add(unmarshaller.Unmarshall(context)); } else if (context.IsEndArray) { break; } } continue; } } else if (context.IsEndElement && context.CurrentDepth <= originalDepth) { return(describeInterconnectsResult); } } return(describeInterconnectsResult); }
private static void UnmarshallResult(JsonUnmarshallerContext context, DescribeInterconnectsResponse response) { int originalDepth = context.CurrentDepth; int targetDepth = originalDepth + 1; while (context.Read()) { if (context.TestExpression("interconnects", targetDepth)) { context.Read(); response.Interconnects = new List <Interconnect>(); InterconnectUnmarshaller unmarshaller = InterconnectUnmarshaller.GetInstance(); while (context.Read()) { JsonToken token = context.CurrentTokenType; if (token == JsonToken.ArrayStart) { continue; } if (token == JsonToken.ArrayEnd) { break; } response.Interconnects.Add(unmarshaller.Unmarshall(context)); } continue; } if (context.CurrentDepth <= originalDepth) { return; } } return; }