mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-16 13:15:07 +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).
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
### Added
|
||||||
|
- IcdXmlTextWriter exposes WriteStartDocument and WriteEndDocument
|
||||||
|
|
||||||
## [7.0.0] - 2018-10-30
|
## [7.0.0] - 2018-10-30
|
||||||
### Changed
|
### Changed
|
||||||
|
|||||||
@@ -70,6 +70,16 @@ namespace ICD.Common.Utils.Xml
|
|||||||
|
|
||||||
#region Methods
|
#region Methods
|
||||||
|
|
||||||
|
public void WriteStartDocument()
|
||||||
|
{
|
||||||
|
m_Writer.WriteStartDocument();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void WriteEndDocument()
|
||||||
|
{
|
||||||
|
m_Writer.WriteEndDocument();
|
||||||
|
}
|
||||||
|
|
||||||
public void WriteStartElement(string elementName)
|
public void WriteStartElement(string elementName)
|
||||||
{
|
{
|
||||||
m_Writer.WriteStartElement(elementName);
|
m_Writer.WriteStartElement(elementName);
|
||||||
|
|||||||
Reference in New Issue
Block a user