From 49a60bd34624e30eeafcd84219d94ed1df7205f1 Mon Sep 17 00:00:00 2001 From: Chris Cameron Date: Thu, 1 Mar 2018 11:19:51 -0500 Subject: [PATCH] Exposing XmlWriter.WriteString method --- 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 6a1536f..5659966 100644 --- a/ICD.Common.Utils/Xml/IcdXmlTextWriter.cs +++ b/ICD.Common.Utils/Xml/IcdXmlTextWriter.cs @@ -95,6 +95,11 @@ namespace ICD.Common.Utils.Xml m_Writer.WriteValue(value); } + public void WriteString(string value) + { + m_Writer.WriteValue(value); + } + public void Dispose() { #if SIMPLSHARP