Returns information about the DescribeStackSummary response and response metadata.
Inheritance: DescribeStackSummaryResult
コード例 #1
0
 public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
 {
   DescribeStackSummaryResponse response = new DescribeStackSummaryResponse();          
   
   context.Read();
   
   UnmarshallResult(context,response);
   return response;
 }
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeStackSummaryResponse response = new DescribeStackSummaryResponse();

            context.Read();
            int targetDepth = context.CurrentDepth;
            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("StackSummary", targetDepth))
                {
                    var unmarshaller = StackSummaryUnmarshaller.Instance;
                    response.StackSummary = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return response;
        }
コード例 #3
0
       private static void UnmarshallResult(JsonUnmarshallerContext context,DescribeStackSummaryResponse response)
       {
         
           int originalDepth = context.CurrentDepth;
           int targetDepth = originalDepth + 1;
           while (context.Read())
           {
             
             if (context.TestExpression("StackSummary", targetDepth))
             {
               context.Read();
               response.StackSummary = StackSummaryUnmarshaller.GetInstance().Unmarshall(context);
               continue;
             }
 
               if (context.CurrentDepth <= originalDepth)
               {                   
                   return;
               }
           }
                       
           return;
       }