Method Characters
Characters(Char[], Int32, Int32)
Receive notification of character data inside an element.
By default, do nothing. Application writers may override this method to take specific actions for each chunk of character data (such as adding the data to a node or buffer, or printing it to a file).
Declaration
public virtual void Characters(char[] ch, int start, int length)
Parameters
Type | Name | Description |
---|---|---|
System.Char[] | ch | The 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. |