Method IgnorableWhitespace
IgnorableWhitespace(Char[], Int32, Int32)
Receive notification of ignorable whitespace in element content.
By default, do nothing. Application writers may override this method to take specific actions for each chunk of ignorable whitespace (such as adding data to a node or buffer, or printing it to a file).
Declaration
public virtual void IgnorableWhitespace(char[] ch, int start, int length)
Parameters
Type | Name | Description |
---|---|---|
System.Char[] | ch | The whitespace characters. |
System.Int32 | start | The start position in the character array. |
System.Int32 | length | The number of characters to use from the character array. |
Implements
Exceptions
Type | Condition |
---|---|
SAXException | Any SAX exception, possibly wrapping another exception. |