Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ ReadContentAsDouble()

override double System.Xml.XmlDictionaryReader.XmlWrappedReader.ReadContentAsDouble ( )
inlinevirtual

Reimplemented from System.Xml.XmlReader.

Definition at line 265 of file XmlDictionaryReader.cs.

266 {
267 try
268 {
270 }
272 {
273 throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(XmlExceptionHelper.CreateConversionException("Double", exception));
274 }
275 catch (FormatException exception2)
276 {
277 throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(XmlExceptionHelper.CreateConversionException("Double", exception2));
278 }
279 catch (OverflowException exception3)
280 {
281 throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(XmlExceptionHelper.CreateConversionException("Double", exception3));
282 }
283 }
virtual double ReadContentAsDouble()
Definition XmlReader.cs:206

References System.Xml.XmlDictionaryReader.XmlWrappedReader._reader, System.Xml.XmlExceptionHelper.CreateConversionException(), System.Xml.Dictionary, System.exception, System.Xml.XmlReader.ReadContentAsDouble(), and System.Runtime.Serialization.DiagnosticUtility.ExceptionUtility.ThrowHelperError().