XmlWriter.WriteValue Method (Object)
Writes the object value.
Assembly: System.Xml (in System.Xml.dll)
Parameters
- value
- Type: System.Object
The object value to write.
Note With the release of the .NET Framework 3.5, this method accepts DateTimeOffset as a parameter.
| Exception | Condition |
|---|---|
| ArgumentException |
An invalid value was specified. |
| ArgumentNullException |
The value is null. |
| InvalidOperationException |
The writer is closed or in error state. |
This method takes the common language runtime (CLR) object and converts the input value to the desired output type using the XML Schema definition language (XSD) data type conversion rules.
If the CLR object is a list type such as IEnumerable, IList, or ICollection, it is treated as an array of the value type. The XmlWriter converts the value to its string representations according to the XML Schema (XSD) data type rules and writes it out using the WriteString method.
If this method is called on an XmlWriter instance that outputs text-only, the typed value is serialized to text.
For more information, see Writing Typed Data.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.