Noemax FastInfoset.NET
WriteElementData(String,Single) Method
See Also  Send Feedback
Noemax.FastInfoset Namespace > XmlFastInfosetWriter Class > WriteElementData Method : WriteElementData(String,Single) Method






localName
The local name of the element.
value
The value of the element.
Encodes a single-precision floating-pointing using Fast Infoset's binary encoding and writes the result as a complete element content.

Syntax

Visual Basic (Declaration) 
<ObsoleteAttribute()>
Public Overloads Sub WriteElementData( _
   ByVal localName As String, _
   ByVal value As Single _
) 
Visual Basic (Usage)Copy Code
Dim instance As XmlFastInfosetWriter
Dim localName As String
Dim value As Single
 
instance.WriteElementData(localName, value)
C# 
[ObsoleteAttribute()]
public void WriteElementData( 
   string localName,
   float value
)
Delphi 
public procedure WriteElementData( 
    localName: String;
    value: Single
); 
JScript 
ObsoleteAttribute()
public function WriteElementData( 
   localName : String,
   value : float
);
Managed Extensions for C++ 
[ObsoleteAttribute()]
public: void WriteElementData( 
   string* localName,
   float value
) 
C++/CLI 
[ObsoleteAttribute()]
public:
void WriteElementData( 
   String^ localName,
   float value
) 

Parameters

localName
The local name of the element.
value
The value of the element.

See Also