System.Xml.WhitespaceHandling Enum

public enum WhitespaceHandling

Base Types

Object
  ValueType
    Enum
      WhitespaceHandling

Assembly

System.Xml

Library

XML

Summary

Specifies the type of white space returned by instances of the XmlTextReader class.

Description

Significant white space is white space between markup in a mixed content model, or white space within an element that has the xml:space="preserve" attribute. Insignificant white space is any other white space between markup.

See Also

System.Xml Namespace

Members

WhitespaceHandling Fields

WhitespaceHandling.All Field
WhitespaceHandling.None Field
WhitespaceHandling.Significant Field
WhitespaceHandling.value__ Field


WhitespaceHandling.All Field

All = 0;

Summary

Return both significant and insignificant white space. This is the default.

See Also

System.Xml.WhitespaceHandling Enum, System.Xml Namespace

WhitespaceHandling.None Field

None = 2;

Summary

Return neither significant nor insignificant white space.

See Also

System.Xml.WhitespaceHandling Enum, System.Xml Namespace

WhitespaceHandling.Significant Field

Significant = 1;

Summary

Return significant white space only.

See Also

System.Xml.WhitespaceHandling Enum, System.Xml Namespace

WhitespaceHandling.value__ Field

value__;

See Also

System.Xml.WhitespaceHandling Enum, System.Xml Namespace