public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            ListVolumeRecoveryPointsResponse response = new ListVolumeRecoveryPointsResponse();

            context.Read();
            int targetDepth = context.CurrentDepth;

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("GatewayARN", targetDepth))
                {
                    response.GatewayARN = StringUnmarshaller.GetInstance().Unmarshall(context);
                    continue;
                }

                if (context.TestExpression("VolumeRecoveryPointInfos", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller <VolumeRecoveryPointInfo, VolumeRecoveryPointInfoUnmarshaller>(
                        VolumeRecoveryPointInfoUnmarshaller.GetInstance());
                    response.VolumeRecoveryPointInfos = unmarshaller.Unmarshall(context);

                    continue;
                }
            }

            return(response);
        }
 public static VolumeRecoveryPointInfoUnmarshaller GetInstance()
 {
     if (instance == null)
     {
         instance = new VolumeRecoveryPointInfoUnmarshaller();
     }
     return(instance);
 }
示例#3
0
        public ListVolumeRecoveryPointsResult Unmarshall(JsonUnmarshallerContext context)
        {
            ListVolumeRecoveryPointsResult listVolumeRecoveryPointsResult = new ListVolumeRecoveryPointsResult();

            listVolumeRecoveryPointsResult.VolumeRecoveryPointInfos = 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("GatewayARN", targetDepth))
                    {
                        listVolumeRecoveryPointsResult.GatewayARN = StringUnmarshaller.GetInstance().Unmarshall(context);
                        continue;
                    }

                    if (context.TestExpression("VolumeRecoveryPointInfos", targetDepth))
                    {
                        listVolumeRecoveryPointsResult.VolumeRecoveryPointInfos = new List <VolumeRecoveryPointInfo>();
                        VolumeRecoveryPointInfoUnmarshaller unmarshaller = VolumeRecoveryPointInfoUnmarshaller.GetInstance();
                        while (context.Read())
                        {
                            if ((context.IsArrayElement) && (context.CurrentDepth == targetDepth))
                            {
                                listVolumeRecoveryPointsResult.VolumeRecoveryPointInfos.Add(unmarshaller.Unmarshall(context));
                            }
                            else if (context.IsEndArray)
                            {
                                break;
                            }
                        }
                        continue;
                    }
                }
                else if (context.IsEndElement && context.CurrentDepth <= originalDepth)
                {
                    return(listVolumeRecoveryPointsResult);
                }
            }


            return(listVolumeRecoveryPointsResult);
        }
        private static void UnmarshallResult(JsonUnmarshallerContext context, ListVolumeRecoveryPointsResponse response)
        {
            int originalDepth = context.CurrentDepth;
            int targetDepth   = originalDepth + 1;

            while (context.Read())
            {
                if (context.TestExpression("GatewayARN", targetDepth))
                {
                    context.Read();
                    response.GatewayARN = StringUnmarshaller.GetInstance().Unmarshall(context);
                    continue;
                }

                if (context.TestExpression("VolumeRecoveryPointInfos", targetDepth))
                {
                    context.Read();
                    response.VolumeRecoveryPointInfos = new List <VolumeRecoveryPointInfo>();
                    VolumeRecoveryPointInfoUnmarshaller unmarshaller = VolumeRecoveryPointInfoUnmarshaller.GetInstance();
                    while (context.Read())
                    {
                        JsonToken token = context.CurrentTokenType;
                        if (token == JsonToken.ArrayStart)
                        {
                            continue;
                        }
                        if (token == JsonToken.ArrayEnd)
                        {
                            break;
                        }
                        response.VolumeRecoveryPointInfos.Add(unmarshaller.Unmarshall(context));
                    }
                    continue;
                }

                if (context.CurrentDepth <= originalDepth)
                {
                    return;
                }
            }

            return;
        }