DefaultHandler.UnparsedEntityDecl(String, String, String, String) 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 an unparsed entity declaration.
[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")]
public virtual 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")>]
abstract member UnparsedEntityDecl : string * string * string * string -> unit
override this.UnparsedEntityDecl : string * string * string * string -> unit
Parameters
- name
- String
The entity name.
- publicId
- String
The entity public identifier, or null if not available.
- systemId
- String
The entity system identifier.
- notationName
- String
The name of the associated notation.
Implements
- Attributes
Exceptions
Any SAX exception, possibly wrapping another exception.
Remarks
Receive notification of an unparsed entity declaration.
By default, do nothing. Application writers may override this method in a subclass to keep track of the unparsed entities declared in a document.
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.UnparsedEntityDecl(System.String%2c+System.String%2c+System.String%2c+System.String)>