mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-12 12:07:05 +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).
|
||||
|
||||
## [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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue