XmlWriter.WriteValue Method
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Include Protected Members
Include Inherited Members
Include Silverlight Members
Include Silverlight for Windows Phone Members
Include XNA Framework Members
Writes a single simple-typed value.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
Overload List
Name | Description | |
---|---|---|
WriteValue(Boolean) | Writes a Boolean value. | |
WriteValue(DateTime) | Writes a DateTime value. | |
WriteValue(Decimal) | Writes a Decimal value. | |
WriteValue(Double) | Writes a Double value. | |
WriteValue(Int32) | Writes a Int32 value. | |
WriteValue(Int64) | Writes a Int64 value. | |
WriteValue(Object) | Writes the object value. | |
WriteValue(Single) | Writes a single-precision floating-point number. | |
WriteValue(String) | Writes a String value. |
Top
Remarks
The WriteValue method accepts common language runtime (CLR) simple-typed values. This allows you to pipeline simple-type values with minimal re-parsing overhead when passing data between XmlReader, and XmlWriter objects. This ability is also useful when dealing with CLR simple-types and an XmlWriter instance. You can call the WriteValue method to write the typed value, rather than using the methods on the XmlConvert class to convert the typed data to a string value before writing it out.
See Also