You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GpxReader will now throw an XmlException when it encounters an unexpected top-level child element of the root gpx element, instead of running into an infinite loop (#41).
"Unexpected top-level child elements" are elements whose names we do not recognize, metadata or extensions showing up more than once, or the metadata element showing up somewhere after the first child element.
GpxReaderSettings now has an IgnoreUnexpectedChildrenOfTopLevelElement property to use to ignore those elements instead of throwing XmlException.