Name | Description | |
---|---|---|
![]() | Close | Closes the stream this writer operates on. |
![]() ![]() | Create | Overloaded. Creates a XML writer to write data to the given stream encoding the string data with the UTF8 encoding. |
![]() | WriteAttributeString | Writes an attribute name/value pair to the current element. |
![]() | WriteElementString | Writes a start tag, a text node as its content and an end tag. |
![]() | WriteEndDocument | Closes all opened elements and puts the writer back in start state. |
![]() | WriteEndElement | Writes an end tag that closes the current element (e.g. </name>). If the current element has no content writes a a self closed tag (e.g. />). |
![]() | WriteFullEndElement | Writes a full end tag that closes the current element (e.g. </name>). |
![]() | WriteStartDocument | Writes a XML document declaration. |
![]() | WriteStartElement | Writes a start tag with the given name. |
![]() | WriteValue | Writes the given string as a value to the current element. |