Amazon.ServiceCatalog.Model.Internal.MarshallTransformations.DescribeConstraintResponseUnmarshaller.Unmarshall C# (CSharp) Method

Unmarshall() public method

Unmarshaller the response from the service to the response class.
public Unmarshall ( JsonUnmarshallerContext context ) : AmazonWebServiceResponse
context Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext
return Amazon.Runtime.AmazonWebServiceResponse
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeConstraintResponse response = new DescribeConstraintResponse();

            context.Read();
            int targetDepth = context.CurrentDepth;
            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("ConstraintDetail", targetDepth))
                {
                    var unmarshaller = ConstraintDetailUnmarshaller.Instance;
                    response.ConstraintDetail = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("ConstraintParameters", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.ConstraintParameters = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("Status", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.Status = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return response;
        }
DescribeConstraintResponseUnmarshaller