IContentHandler.EndPrefixMapping(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.
End the scope of a prefix-URI mapping.
[Android.Runtime.Register("endPrefixMapping", "(Ljava/lang/String;)V", "GetEndPrefixMapping_Ljava_lang_String_Handler:Org.Xml.Sax.IContentHandlerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public void EndPrefixMapping (string? prefix);
[<Android.Runtime.Register("endPrefixMapping", "(Ljava/lang/String;)V", "GetEndPrefixMapping_Ljava_lang_String_Handler:Org.Xml.Sax.IContentHandlerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member EndPrefixMapping : string -> unit
Parameters
- prefix
- String
the prefix that was being mapped. This is the empty string when a default mapping scope ends.
- Attributes
Exceptions
the client may throw an exception during processing
Remarks
End the scope of a prefix-URI mapping.
See #startPrefixMapping startPrefixMapping
for details. These events will always occur immediately after the corresponding #endElement endElement
event, but the order of #endPrefixMapping endPrefixMapping
events is not otherwise guaranteed.
Java documentation for org.xml.sax.ContentHandler.endPrefixMapping(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.IContentHandler.StartPrefixMapping(System.String%2c+System.String)>
- <xref:Org.Xml.Sax.IContentHandler.EndElement(System.String%2c+System.String%2c+System.String)>