public static CreateACLResponse Unmarshall(UnmarshallerContext context)
        {
            CreateACLResponse createACLResponse = new CreateACLResponse();

            createACLResponse.HttpResponse = context.HttpResponse;
            createACLResponse.RequestId    = context.StringValue("CreateACL.RequestId");
            createACLResponse.AclId        = context.StringValue("CreateACL.AclId");

            return(createACLResponse);
        }
Ejemplo 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)
        {
            CreateACLResponse response = new CreateACLResponse();

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

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

            return(response);
        }