HandlerBase.Characters(Char[], Int32, Int32) Method

Definition

Caution

deprecated

Receive notification of character data inside an element.

[Android.Runtime.Register("characters", "([CII)V", "GetCharacters_arrayCIIHandler")]
[System.Obsolete("deprecated")]
public virtual void Characters (char[]? ch, int start, int length);
[<Android.Runtime.Register("characters", "([CII)V", "GetCharacters_arrayCIIHandler")>]
[<System.Obsolete("deprecated")>]
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.HandlerBase.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.IDocumentHandler.Characters(System.Char%5b%5d%2c+System.Int32%2c+System.Int32)>