feat: IcdXmlTextWriter exposes WriteStartDocument and WriteEndDocument

This commit is contained in:
Chris Cameron
2018-11-07 14:25:24 -05:00
parent 2e0b0da87f
commit 8b1c53ebe1
2 changed files with 12 additions and 0 deletions

View File

@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## [Unreleased]
### Added
- IcdXmlTextWriter exposes WriteStartDocument and WriteEndDocument
## [7.0.0] - 2018-10-30
### Changed

View File

@@ -70,6 +70,16 @@ namespace ICD.Common.Utils.Xml
#region Methods
public void WriteStartDocument()
{
m_Writer.WriteStartDocument();
}
public void WriteEndDocument()
{
m_Writer.WriteEndDocument();
}
public void WriteStartElement(string elementName)
{
m_Writer.WriteStartElement(elementName);