Noemax FastInfoset.NET
FloatFormat Property
See Also  Send Feedback
Noemax.FastInfoset Namespace > XmlFastInfosetWriterProfile Class : FloatFormat Property






Gets and sets the format used to serialize floating point values.

Syntax

Visual Basic (Declaration) 
Public Property FloatFormat As XmlFastInfosetFormat
Visual Basic (Usage)Copy Code
Dim instance As XmlFastInfosetWriterProfile
Dim value As XmlFastInfosetFormat
 
instance.FloatFormat = value
 
value = instance.FloatFormat
C# 
public XmlFastInfosetFormat FloatFormat {get; set;}
Delphi 
public read-write property FloatFormat: XmlFastInfosetFormat; 
JScript 
public function get,set FloatFormat : XmlFastInfosetFormat
Managed Extensions for C++ 
public: __property XmlFastInfosetFormat get_FloatFormat();
public: __property void set_FloatFormat( 
   XmlFastInfosetFormat value
);
C++/CLI 
public:
property XmlFastInfosetFormat FloatFormat {
   XmlFastInfosetFormat get();
   void set (    XmlFastInfosetFormat value);
}

Remarks

Values of this data type can be encoded using any of the following representations:

- Binary
- Literal
- LiteralNoIndex
- RestrictedAlphabet
- RestrictedAlphabetNoIndex

When values are indexed, they are added to the Fast Infoset vocabulary in order to reduce redundancy and increase compactness. If there are few repeating values of the same data type then it might be preferable not to use indexing.

See Also