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