From 16ec6e572c16046e4d686bae7630099424d8a8f5 Mon Sep 17 00:00:00 2001 From: Jack Kanarish Date: Wed, 21 Feb 2018 14:12:27 -0500 Subject: [PATCH] add a xml writer method to write content --- ICD.Common.Utils/Xml/IcdXmlTextWriter.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ICD.Common.Utils/Xml/IcdXmlTextWriter.cs b/ICD.Common.Utils/Xml/IcdXmlTextWriter.cs index 3a1814d..6a1536f 100644 --- a/ICD.Common.Utils/Xml/IcdXmlTextWriter.cs +++ b/ICD.Common.Utils/Xml/IcdXmlTextWriter.cs @@ -90,6 +90,11 @@ namespace ICD.Common.Utils.Xml m_Writer.WriteComment(comment); } + public void WriteValue(object value) + { + m_Writer.WriteValue(value); + } + public void Dispose() { #if SIMPLSHARP