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

            return(instance);
        }
        public LoadBalancerDescription Unmarshall(UnmarshallerContext context)
        {
            LoadBalancerDescription loadBalancerDescription = new LoadBalancerDescription();
            int originalDepth = context.CurrentDepth;
            int targetDepth   = originalDepth + 1;

            if (context.IsStartOfDocument)
            {
                targetDepth += 2;
            }

            while (context.Read())
            {
                if (context.IsStartElement || context.IsAttribute)
                {
                    if (context.TestExpression("LoadBalancerName", targetDepth))
                    {
                        loadBalancerDescription.LoadBalancerName = StringUnmarshaller.GetInstance().Unmarshall(context);

                        continue;
                    }
                    if (context.TestExpression("Domain", targetDepth))
                    {
                        loadBalancerDescription.Domain = StringUnmarshaller.GetInstance().Unmarshall(context);

                        continue;
                    }
                    if (context.TestExpression("Listeners/member", targetDepth))
                    {
                        loadBalancerDescription.Listeners.Add(ListenerUnmarshaller.GetInstance().Unmarshall(context));

                        continue;
                    }
                }
                else if (context.IsEndElement && context.CurrentDepth < originalDepth)
                {
                    return(loadBalancerDescription);
                }
            }

            return(loadBalancerDescription);
        }