NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

XmlReader.IsWhitespace

Indicates whether the current text node consists of whitespace characters only.

[Visual Basic]
Overridable Public ReadOnly Property IsWhitespace As Boolean
[C#]
public bool IsWhitespace {virtual get;}
[C++]
public: __property virtual bool get_IsWhitespace();
[JScript]
public function get IsWhitespace() : Boolean;

Remarks

This property is true if the reader is positioned on a text node and that text node is an empty string or consists of whitespace characters only. The following characters are classified as whitespace: Space (0x20), carriage return (0x0D), line feed (0x0A), and tab (0x09).

See Also

XmlReader Class | XmlReader Members | System.Xml Namespace | Text