Discuss this help topic in SecureBlackbox Forum

TElXMLDOMNode.IsSupported

TElXMLDOMNode     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Specifies if the node supports the XML feature.

Declaration

[C#]
    not available

[VB.NET]
    not available

[Pascal]
    function IsSupported(Feature : WideString; Version : WideString) : boolean;

[C++]
    not available

[PHP]
    not available

[Java]
    boolean isSupported(String Feature, String Version);

Parameters

  • Feature - The package name of the feature to test. This name is not case-sensitive.
  • Version - This is the version number of the package name to test. If the version is not specified (null), supporting any version of the feature causes the method to return true.

Description

    Use this method to test whether the DOM implementation implements a specific feature and that feature is supported by this node, as specified in DOM Features. Currently the method always returns false.

Discuss this help topic in SecureBlackbox Forum