C# Класс Mueller.Wddx.NumberSerializer

Serializes a number.

Any of the following data types will be serialized as a WDDX number element.

System.Byte System.Int16 System.Int32 System.Int64 System.Single System.Double System.Decimal*

* WDDX does not support the precision of System.Decimal, so this type will be converted to System.Double before serialization.

Наследование: IWddxObjectSerializer
Показать файл Открыть проект

Открытые методы

Метод Описание
WriteObject ( XmlWriter output, object obj ) : void

Writes the serialized object to the XML stream.

Приватные методы

Метод Описание
NumberSerializer ( ) : System

Описание методов

WriteObject() публичный Метод

Writes the serialized object to the XML stream.
public WriteObject ( XmlWriter output, object obj ) : void
output System.Xml.XmlWriter A pre-initialized object.
obj object Object to serialize.
Результат void