Amazon.DataPipeline.Model.Internal.MarshallTransformations.GetPipelineDefinitionResponseUnmarshaller.UnmarshallResult C# (CSharp) Метод

UnmarshallResult() приватный статический Метод

private static UnmarshallResult ( JsonUnmarshallerContext context, GetPipelineDefinitionResponse response ) : void
context Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext
response Amazon.DataPipeline.Model.GetPipelineDefinitionResponse
Результат void
        private static void UnmarshallResult(JsonUnmarshallerContext context,GetPipelineDefinitionResponse response)
        {
          
            int originalDepth = context.CurrentDepth;
            int targetDepth = originalDepth + 1;
            while (context.Read())
            {
              
              if (context.TestExpression("pipelineObjects", targetDepth))
              {
                context.Read();
                response.PipelineObjects = new List<PipelineObject>();
                        PipelineObjectUnmarshaller unmarshaller = PipelineObjectUnmarshaller.GetInstance();
                while (context.Read())
                {
                  JsonToken token = context.CurrentTokenType;                
                  if (token == JsonToken.ArrayStart)
                  {
                    continue;
                  }
                  if (token == JsonToken.ArrayEnd)
                  {
                    break;
                  }
                   response.PipelineObjects.Add(unmarshaller.Unmarshall(context));
                }
                continue;
              }
  
                if (context.CurrentDepth <= originalDepth)
                {                   
                    return;
                }
            }
                        
            return;
        }