XmlWriter.WriteElementString Method (String, String)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
When overridden in a derived class, writes an element with the specified local name and value.
Assembly: System.Xml (in System.Xml.dll)
Parameters
- localName
- Type: System.String
The local name of the element.
- value
- Type: System.String
The value of the element.
| Exception | Condition |
|---|---|
| ArgumentException | The localName value is null or an empty string. -or- The parameter values are not valid. |
XmlWriterSettings settings = new XmlWriterSettings(); settings.OmitXmlDeclaration = true; StringWriter sw = new StringWriter(); using (XmlWriter writer = XmlWriter.Create(sw, settings)) { writer.WriteStartElement("book"); writer.WriteElementString("price", "19.95"); writer.WriteEndElement(); writer.Flush(); } OutputTextBlock.Text = sw.ToString();
Show: