Method Characters
Characters(Char[], Int32, Int32)
Receive notification of character data.
The Parser will call this method to report each chunk of character data. Parsers may return all contiguous character data in a single chunk, or they may split it into several chunks; however, all of the characters in any single event must come from the same external entity so that the Locator provides useful information.
The application must not attempt to read from the array outside of the specified range.
Declaration
public virtual void Characters(char[] ch, int start, int length)
Parameters
Type | Name | Description |
---|---|---|
System.Char[] | ch | |
System.Int32 | start | |
System.Int32 | length |