jellyfin/MediaBrowser.Controller/Xml/XmlExtensions.cs

42 lines
1.1 KiB
C#
Raw Normal View History

2012-07-12 08:55:27 +02:00
using System;
using System.Globalization;
using System.Xml;
namespace MediaBrowser.Controller.Xml
{
public static class XmlExtensions
{
private static CultureInfo _usCulture = new CultureInfo("en-US");
2012-07-12 08:55:27 +02:00
public static float ReadFloatSafe(this XmlReader reader)
2012-07-12 08:55:27 +02:00
{
string valueString = reader.ReadElementContentAsString();
2012-07-12 08:55:27 +02:00
float value = 0;
2012-07-12 08:55:27 +02:00
if (!string.IsNullOrEmpty(valueString))
2012-07-12 08:55:27 +02:00
{
// float.TryParse is local aware, so it can be probamatic, force us culture
float.TryParse(valueString, NumberStyles.AllowDecimalPoint, _usCulture, out value);
2012-07-12 08:55:27 +02:00
}
return value;
2012-07-12 08:55:27 +02:00
}
public static int ReadIntSafe(this XmlReader reader)
2012-07-12 08:55:27 +02:00
{
string valueString = reader.ReadElementContentAsString();
2012-07-12 08:55:27 +02:00
int value = 0;
if (!string.IsNullOrEmpty(valueString))
2012-07-12 08:55:27 +02:00
{
int.TryParse(valueString, out value);
2012-07-12 08:55:27 +02:00
}
return value;
2012-07-12 08:55:27 +02:00
}
}
}