IDOMImplementationSource.GetDOMImplementation(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.
A method to request the first DOM implementation that supports the specified features.
[Android.Runtime.Register("getDOMImplementation", "(Ljava/lang/String;)Lorg/w3c/dom/DOMImplementation;", "GetGetDOMImplementation_Ljava_lang_String_Handler:Org.W3c.Dom.IDOMImplementationSourceInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public Org.W3c.Dom.IDOMImplementation? GetDOMImplementation (string? features);
[<Android.Runtime.Register("getDOMImplementation", "(Ljava/lang/String;)Lorg/w3c/dom/DOMImplementation;", "GetGetDOMImplementation_Ljava_lang_String_Handler:Org.W3c.Dom.IDOMImplementationSourceInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member GetDOMImplementation : string -> Org.W3c.Dom.IDOMImplementation
Parameters
- features
- String
A string that specifies which features and versions
are required. This is a space separated list in which each feature
is specified by its name optionally followed by a space and a
version number. This method returns the first item of the list
returned by getDOMImplementationList
. As an example,
the string "XML 3.0 Traversal +Events 2.0"
will
request a DOM implementation that supports the module "XML" for its
3.0 version, a module that support of the "Traversal" module for
any version, and the module "Events" for its 2.0 version. The
module "Events" must be accessible using the method
Node.getFeature()
and
DOMImplementation.getFeature()
.
Returns
The first DOM implementation that support the desired
features, or null
if this source has none.
- Attributes
Remarks
A method to request the first DOM implementation that supports the specified features.
Java documentation for org.w3c.dom.DOMImplementationSource.getDOMImplementation(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.