Returns information about the CreatePipeline response and response metadata.
Inheritance: CreatePipelineResult
 public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
 {
   CreatePipelineResponse response = new CreatePipelineResponse();          
   
   context.Read();
   
   UnmarshallResult(context,response);
   return response;
 }
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            CreatePipelineResponse response = new CreatePipelineResponse();

              context.Read();

              response.CreatePipelineResult = CreatePipelineResultUnmarshaller.GetInstance().Unmarshall(context);

              return response;
        }
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            CreatePipelineResponse response = new CreatePipelineResponse();

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

            return response;
        }
       private static void UnmarshallResult(JsonUnmarshallerContext context,CreatePipelineResponse response)
       {
         
           int originalDepth = context.CurrentDepth;
           int targetDepth = originalDepth + 1;
           while (context.Read())
           {
             
             if (context.TestExpression("Pipeline", targetDepth))
             {
               context.Read();
               response.Pipeline = PipelineUnmarshaller.GetInstance().Unmarshall(context);
               continue;
             }
 
               if (context.CurrentDepth <= originalDepth)
               {                   
                   return;
               }
           }
                       
           return;
       }