private static void UnmarshallResult(JsonUnmarshallerContext context,DescribeConnectionsOnInterconnectResponse response)
{
int originalDepth = context.CurrentDepth;
int targetDepth = originalDepth + 1;
while (context.Read())
{
if (context.TestExpression("connections", targetDepth))
{
context.Read();
response.Connections = new List<Connection>();
ConnectionUnmarshaller unmarshaller = ConnectionUnmarshaller.GetInstance();
while (context.Read())
{
JsonToken token = context.CurrentTokenType;
if (token == JsonToken.ArrayStart)
{
continue;
}
if (token == JsonToken.ArrayEnd)
{
break;
}
response.Connections.Add(unmarshaller.Unmarshall(context));
}
continue;
}
if (context.CurrentDepth <= originalDepth)
{
return;
}
}
return;
}