Returns information about the VerifyEmailIdentityResult response and response metadata.
Наследование: Amazon.Runtime.AmazonWebServiceResponse
        /// <summary>
        /// Unmarshaller the response from the service to the response class.
        /// </summary>  
        /// <param name="context"></param>
        /// <returns></returns>
        public override AmazonWebServiceResponse Unmarshall(XmlUnmarshallerContext context)
        {
            VerifyEmailIdentityResponse response = new VerifyEmailIdentityResponse();

            context.Read();
            int targetDepth = context.CurrentDepth;
            while (context.ReadAtDepth(targetDepth))
            {
                if (context.IsStartElement)
                {                    
                    if(context.TestExpression("VerifyEmailIdentityResult", 2))
                    {
                        UnmarshallResult(context, response);                        
                        continue;
                    }
                    
                    if (context.TestExpression("ResponseMetadata", 2))
                    {
                        response.ResponseMetadata = ResponseMetadataUnmarshaller.Instance.Unmarshall(context);
                    }
                }
            }

            return response;
        }
        private static void UnmarshallResult(XmlUnmarshallerContext context, VerifyEmailIdentityResponse response)
        {
            
            int originalDepth = context.CurrentDepth;
            int targetDepth = originalDepth + 1;
            
            if (context.IsStartOfDocument) 
               targetDepth += 2;
            
            while (context.ReadAtDepth(originalDepth))
            {
                if (context.IsStartElement || context.IsAttribute)
                {

                } 
           }

            return;
        }
        public override AmazonWebServiceResponse Unmarshall(XmlUnmarshallerContext context)
        {
            VerifyEmailIdentityResponse response = new VerifyEmailIdentityResponse();

            while (context.Read())
            {
                if (context.IsStartElement)
                {
                    if(context.TestExpression("VerifyEmailIdentityResult", 2))
                    {
                        response.VerifyEmailIdentityResult = VerifyEmailIdentityResultUnmarshaller.GetInstance().Unmarshall(context);
                        continue;
                    }
                    if (context.TestExpression("ResponseMetadata", 2))
                    {
                        response.ResponseMetadata = ResponseMetadataUnmarshaller.GetInstance().Unmarshall(context);
                    }
                }
            }

            return response;
        }
Пример #4
0
    public bool VerifyEmailAddress(string email)
    {
        bool result = false;
        client = new AmazonSimpleEmailServiceClient(AccessKey, SecretKey);
        List<String> verifiedEmailAddresses = ListVerifiedEmailAddresses();
        VerifyEmailAddressRequest request = new VerifyEmailAddressRequest();
        VerifyEmailAddressResponse response = new VerifyEmailAddressResponse();

        VerifyEmailIdentityRequest Irequest = new VerifyEmailIdentityRequest();
        VerifyEmailIdentityResponse Iresponse = new VerifyEmailIdentityResponse();
        if (IsValidMail(email) == true)
        {
            if (!verifiedEmailAddresses.Contains(email))
            {
                if (client != null)
                {
                    Irequest.EmailAddress = email.Trim();
                    Iresponse = client.VerifyEmailIdentity(Irequest);
                    VerifyEmailIdentityResult rs = Iresponse.VerifyEmailIdentityResult;

                    if (!string.IsNullOrEmpty(Iresponse.ResponseMetadata.RequestId))
                    {
                        result = true;
                    }
                }
            }
        }
        return result;
    }