XmlWriter.WriteWhitespace(String) Method

Definition

When overridden in a derived class, writes out the given white space.

public:
 abstract void WriteWhitespace(System::String ^ ws);
public abstract void WriteWhitespace (string ws);
public abstract void WriteWhitespace (string? ws);
abstract member WriteWhitespace : string -> unit
Public MustOverride Sub WriteWhitespace (ws As String)

Parameters

ws
String

The string of white space characters.

Exceptions

The string contains non-white space characters.

An XmlWriter method was called before a previous asynchronous operation finished. In this case, InvalidOperationException is thrown with the message "An asynchronous operation is already in progress."

Remarks

This method is used to manually format your document.

For the asynchronous version of this method, see WriteWhitespaceAsync.

Applies to