public static DeleteEntityResponse Unmarshall(UnmarshallerContext context)
        {
            DeleteEntityResponse deleteEntityResponse = new DeleteEntityResponse();

            deleteEntityResponse.HttpResponse = context.HttpResponse;
            deleteEntityResponse.RequestId    = context.StringValue("DeleteEntity.RequestId");
            deleteEntityResponse.EntityId     = context.StringValue("DeleteEntity.EntityId");

            return(deleteEntityResponse);
        }
Esempio n. 2
0
        /// <summary>
        /// Unmarshaller the response from the service to the response class.
        /// </summary>
        /// <param name="context"></param>
        /// <returns></returns>
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DeleteEntityResponse response = new DeleteEntityResponse();

            context.Read();
            int targetDepth = context.CurrentDepth;

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("state", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.State = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return(response);
        }