mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-12 12:07:05 +00:00
Merge remote-tracking branch 'origin/ConnectPro_v1.3' into ConnectPro_v1.4
This commit is contained in:
commit
dd6dfa191e
3 changed files with 16 additions and 18 deletions
|
|
@ -45,6 +45,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|||
### Changed
|
||||
- Improvements to JSON DateTime parsing, particularly in Net Standard
|
||||
|
||||
## [9.7.1] - 2019-08-17
|
||||
### Changed
|
||||
- Fixed CultureInfo SQLite conection string for 4-series compatibility
|
||||
|
||||
## [9.7.0] - 2019-08-15
|
||||
### Added
|
||||
- Added logger timestamps to non simplsharp programs
|
||||
|
|
@ -128,6 +132,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|||
- Better VC-4 support for IcdConsole
|
||||
- JSON refactoring for simpler deserialization
|
||||
|
||||
## [8.9.3] - 2020-08-17
|
||||
### Changed
|
||||
- Workaround for logged XML format exceptions when failing to parse floats
|
||||
|
||||
## [8.9.2] - 2020-07-28
|
||||
### Changed
|
||||
- StringExtensions - fixed an issue with IsNumeric where empty strings would return true
|
||||
|
|
|
|||
|
|
@ -177,26 +177,16 @@ namespace ICD.Common.Utils.Xml
|
|||
|
||||
public long ReadElementContentAsLong()
|
||||
{
|
||||
try
|
||||
{
|
||||
return m_Reader.ReadElementContentAsLong();
|
||||
}
|
||||
catch (XmlException e)
|
||||
{
|
||||
throw new IcdXmlException(e);
|
||||
}
|
||||
// ReadElementContentAsLong() logs and throws...
|
||||
string value = ReadElementContentAsString();
|
||||
return long.Parse(value);
|
||||
}
|
||||
|
||||
public float ReadElementContentAsFloat()
|
||||
{
|
||||
try
|
||||
{
|
||||
return m_Reader.ReadElementContentAsFloat();
|
||||
}
|
||||
catch (XmlException e)
|
||||
{
|
||||
throw new IcdXmlException(e);
|
||||
}
|
||||
// ReadElementContentAsFloat() logs and throws...
|
||||
string value = ReadElementContentAsString();
|
||||
return float.Parse(value);
|
||||
}
|
||||
|
||||
public bool ReadElementContentAsBoolean()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue