IDTDHandler.UnparsedEntityDecl(String, String, String, String) Method

Definition

Receive notification of an unparsed entity declaration event.

[Android.Runtime.Register("unparsedEntityDecl", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V", "GetUnparsedEntityDecl_Ljava_lang_String_Ljava_lang_String_Ljava_lang_String_Ljava_lang_String_Handler:Org.Xml.Sax.IDTDHandlerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public void UnparsedEntityDecl (string? name, string? publicId, string? systemId, string? notationName);
[<Android.Runtime.Register("unparsedEntityDecl", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V", "GetUnparsedEntityDecl_Ljava_lang_String_Ljava_lang_String_Ljava_lang_String_Ljava_lang_String_Handler:Org.Xml.Sax.IDTDHandlerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member UnparsedEntityDecl : string * string * string * string -> unit

Parameters

name
String

The unparsed entity's name.

publicId
String

The entity's public identifier, or null if none was given.

systemId
String

The entity's system identifier.

notationName
String

The name of the associated notation.

Attributes

Exceptions

Any SAX exception, possibly wrapping another exception.

Remarks

Receive notification of an unparsed entity declaration event.

Note that the notation name corresponds to a notation reported by the #notationDecl notationDecl event. It is up to the application to record the entity for later reference, if necessary; unparsed entities may appear as attribute values.

If the system identifier is a URL, the parser must resolve it fully before passing it to the application.

Java documentation for org.xml.sax.DTDHandler.unparsedEntityDecl(java.lang.String, java.lang.String, java.lang.String, java.lang.String).

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.IDTDHandler.NotationDecl(System.String%2c+System.String%2c+System.String)>
  • IAttributes