Amazon.ECR.Model.Internal.MarshallTransformations.DescribeImagesResponseUnmarshaller.Unmarshall C# (CSharp) Method

Unmarshall() public method

Unmarshaller the response from the service to the response class.
public Unmarshall ( JsonUnmarshallerContext context ) : AmazonWebServiceResponse
context JsonUnmarshallerContext
return AmazonWebServiceResponse
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeImagesResponse response = new DescribeImagesResponse();

            context.Read();
            int targetDepth = context.CurrentDepth;
            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("imageDetails", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller<ImageDetail, ImageDetailUnmarshaller>(ImageDetailUnmarshaller.Instance);
                    response.ImageDetails = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("nextToken", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.NextToken = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return response;
        }
DescribeImagesResponseUnmarshaller