mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-14 13:07:28 +00:00
feat: IcdXmlTextWriter exposes WriteStartDocument and WriteEndDocument
This commit is contained in:
parent
2e0b0da87f
commit
8b1c53ebe1
2 changed files with 12 additions and 0 deletions
|
|
@ -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);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue