Amazon.EC2.Model.Internal.MarshallTransformations.StopInstancesResponseUnmarshaller.Unmarshall C# (CSharp) Method

Unmarshall() public method

Unmarshaller the response from the service to the response class.
public Unmarshall ( Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext context ) : AmazonWebServiceResponse
context Amazon.Runtime.Internal.Transform.XmlUnmarshallerContext
return Amazon.Runtime.AmazonWebServiceResponse
        public override AmazonWebServiceResponse Unmarshall(XmlUnmarshallerContext context)
        {
            StopInstancesResponse response = new StopInstancesResponse();

            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("instancesSet/item", targetDepth))
                    {
                        var unmarshaller = InstanceStateChangeUnmarshaller.Instance;
                        var item = unmarshaller.Unmarshall(context);
                        response.StoppingInstances.Add(item);
                        continue;
                    }
                } 
            }

            return response;
        }
StopInstancesResponseUnmarshaller