public static VolumeUnmarshaller GetInstance()
        {
            if (instance == null)
            {
                instance = new VolumeUnmarshaller();
            }

            return(instance);
        }
Beispiel #2
0
        public override AmazonWebServiceResponse Unmarshall(XmlUnmarshallerContext context)
        {
            CreateVolumeResponse response = new CreateVolumeResponse();

            int targetDepth = 2;

            while (context.Read())
            {
                if (context.IsStartElement || context.IsAttribute)
                {
                    if (context.TestExpression(".", targetDepth))
                    {
                        response.Volume = VolumeUnmarshaller.GetInstance().Unmarshall(context);

                        continue;
                    }
                }
            }


            return(response);
        }