mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-01-11 19:44:55 +00:00
feat: IcdXmlTextWriter exposes WriteStartDocument and WriteEndDocument
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user