public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context) { DescribeClusterResponse response = new DescribeClusterResponse(); context.Read(); UnmarshallResult(context,response); return response; }
/// <summary> /// Unmarshaller the response from the service to the response class. /// </summary> /// <param name="context"></param> /// <returns></returns> public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context) { DescribeClusterResponse response = new DescribeClusterResponse(); context.Read(); int targetDepth = context.CurrentDepth; while (context.ReadAtDepth(targetDepth)) { if (context.TestExpression("Cluster", targetDepth)) { var unmarshaller = ClusterUnmarshaller.Instance; response.Cluster = unmarshaller.Unmarshall(context); continue; } } return response; }
private static void UnmarshallResult(JsonUnmarshallerContext context,DescribeClusterResponse response) { int originalDepth = context.CurrentDepth; int targetDepth = originalDepth + 1; while (context.Read()) { if (context.TestExpression("Cluster", targetDepth)) { context.Read(); response.Cluster = ClusterUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.CurrentDepth <= originalDepth) { return; } } return; }