DefaultHandler.Characters(Char[], Int32, Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Receive notification of character data inside an element.
[Android.Runtime.Register("characters", "([CII)V", "GetCharacters_arrayCIIHandler")]
public virtual void Characters (char[]? ch, int start, int length);
[<Android.Runtime.Register("characters", "([CII)V", "GetCharacters_arrayCIIHandler")>]
abstract member Characters : char[] * int * int -> unit
override this.Characters : char[] * int * int -> unit
Parameters
- ch
- Char[]
The characters.
- start
- Int32
The start position in the character array.
- length
- Int32
The number of characters to use from the character array.
Implements
- Attributes
Exceptions
Any SAX exception, possibly wrapping another exception.
Remarks
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).
Java documentation for org.xml.sax.helpers.DefaultHandler.characters(char[], int, int)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
See also
- <xref:Org.Xml.Sax.IContentHandler.Characters(System.Char%5b%5d%2c+System.Int32%2c+System.Int32)>