From 7b30730ea0f477dbc8f1ca4abf41c3d174ab21cd Mon Sep 17 00:00:00 2001 From: Chris Cameron Date: Sun, 9 Sep 2018 14:14:45 -0400 Subject: [PATCH] feat: IcdXmlReader exposes IsEmptyElement property --- ICD.Common.Utils/Xml/IcdXmlReader.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ICD.Common.Utils/Xml/IcdXmlReader.cs b/ICD.Common.Utils/Xml/IcdXmlReader.cs index 2be8975..7274d5e 100644 --- a/ICD.Common.Utils/Xml/IcdXmlReader.cs +++ b/ICD.Common.Utils/Xml/IcdXmlReader.cs @@ -23,6 +23,8 @@ namespace ICD.Common.Utils.Xml public XmlNodeType NodeType { get { return m_Reader.NodeType; } } + public bool IsEmptyElement { get { return m_Reader.IsEmptyElement; } } + #endregion ///