Esempio n. 1
0
        public KeyPair CreateKeyPair(string keyName)
        {
            AWSModel.CreateKeyPairRequest request = new AWSModel.CreateKeyPairRequest();
            request.KeyName = keyName;

            AWSModel.CreateKeyPairResponse response = ec2.CreateKeyPair(request);
            KeyPair keyPair = ModelUtil.CreateInstance(response.CreateKeyPairResult.KeyPair);

            return(keyPair);
        }
 public override AmazonWebServiceResponse Unmarshall(XmlUnmarshallerContext context) 
 {   
     CreateKeyPairResponse response = new CreateKeyPairResponse();
     
     int targetDepth = 2;
     while (context.Read())
     {
         if (context.IsStartElement || context.IsAttribute)
         {
             
             if (context.TestExpression(".", targetDepth))
             {
                 response.KeyPair = KeyPairUnmarshaller.GetInstance().Unmarshall(context);
                     
                 continue;
             }
         }
     }
          
                 
     return response;
 }
        /// <summary>
        /// Unmarshaller the response from the service to the response class.
        /// </summary>  
        /// <param name="context"></param>
        /// <returns></returns>
        public override AmazonWebServiceResponse Unmarshall(XmlUnmarshallerContext context)
        {
            CreateKeyPairResponse response = new CreateKeyPairResponse();

            int originalDepth = context.CurrentDepth;
            int targetDepth = originalDepth + 1;
            if (context.IsStartOfDocument) 
               targetDepth = 2;

            while (context.ReadAtDepth(originalDepth))
            {
                if (context.IsStartElement || context.IsAttribute)
                {

                    if ( context.TestExpression(".", targetDepth))
                    {
                        response.KeyPair = KeyPairUnmarshaller.Instance.Unmarshall(context);
                        continue;
                    }
                } 
            }

            return response;
        }