DefaultHandler.NotationDecl(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 a notation declaration.
[Android.Runtime.Register("notationDecl", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V", "GetNotationDecl_Ljava_lang_String_Ljava_lang_String_Ljava_lang_String_Handler")]
public virtual void NotationDecl (string? name, string? publicId, string? systemId);
[<Android.Runtime.Register("notationDecl", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V", "GetNotationDecl_Ljava_lang_String_Ljava_lang_String_Ljava_lang_String_Handler")>]
abstract member NotationDecl : string * string * string -> unit
override this.NotationDecl : string * string * string -> unit
Parameters
- name
- String
The notation name.
- publicId
- String
The notation public identifier, or null if not available.
- systemId
- String
The notation system identifier.
Implements
- Attributes
Exceptions
Any SAX exception, possibly wrapping another exception.
Remarks
Receive notification of a notation declaration.
By default, do nothing. Application writers may override this method in a subclass if they wish to keep track of the notations 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.NotationDecl(System.String%2c+System.String%2c+System.String)>