private bool DeserializeValueElement(XmlReader reader)
        {
            InstanceValueElement element = new InstanceValueElement();

            element.DeserializeElement(reader);
            valueElement = element;
            return(true);
        }
        private static bool DeserializeValueElement(
            XmlReader reader,
            out InjectionParameterValueElement valueElement)
        {
            InstanceValueElement element = new InstanceValueElement();

            element.DeserializeElement(reader);
            valueElement = element;
            return(true);
        }