Esempio n. 1
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)
        {
            ReEncryptResponse response = new ReEncryptResponse();

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

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("CiphertextBlob", targetDepth))
                {
                    var unmarshaller = MemoryStreamUnmarshaller.Instance;
                    response.CiphertextBlob = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("KeyId", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.KeyId = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("SourceKeyId", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.SourceKeyId = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return(response);
        }
        public static ReEncryptResponse Unmarshall(UnmarshallerContext context)
        {
            ReEncryptResponse reEncryptResponse = new ReEncryptResponse();

            reEncryptResponse.HttpResponse   = context.HttpResponse;
            reEncryptResponse.RequestId      = context.StringValue("ReEncrypt.RequestId");
            reEncryptResponse.KeyId          = context.StringValue("ReEncrypt.KeyId");
            reEncryptResponse.KeyVersionId   = context.StringValue("ReEncrypt.KeyVersionId");
            reEncryptResponse.CiphertextBlob = context.StringValue("ReEncrypt.CiphertextBlob");

            return(reEncryptResponse);
        }