Noemax FastInfoset.NET
WriteWhitespace Method
See Also  Send Feedback
Noemax.FastInfoset Namespace > XmlFastInfosetWriter Class : WriteWhitespace Method






ws

The string of white space characters.

Writes out the given white space.

Syntax

Visual Basic (Declaration) 
Public Overrides NotOverridable Sub WriteWhitespace( _
   ByVal ws As String _
) 
Visual Basic (Usage)Copy Code
Dim instance As XmlFastInfosetWriter
Dim ws As String
 
instance.WriteWhitespace(ws)
C# 
public override void WriteWhitespace( 
   string ws
)
Delphi 
public procedure WriteWhitespace( 
    ws: String
); override; 
JScript 
public override function WriteWhitespace( 
   ws : String
);
Managed Extensions for C++ 
public: void WriteWhitespace( 
   string* ws
) override 
C++/CLI 
public:
void WriteWhitespace( 
   String^ ws
) override 

Parameters

ws

The string of white space characters.

Remarks

XmlFastInfosetWriter does not preserve non-significant white space unless it's written within the scope of the element with the xml:space attribute set to "true" (xml:space="true").

See Also