internal static async Task <ExceptionInfo> ReadFromXMLReaderAsync(XmlReader reader)
        {
            ExceptionInfo res = new ExceptionInfo();

            try
            {
                await res.ReadXmlAsync(reader).ConfigureAwait(false);
            }
            catch (XmlException)
            {
                return(null);
            }

            return(res);
        }