Discuss this help topic in SecureBlackbox Forum

TElXMLTransform.IsTransformAlgorithmSupported

TElXMLTransform     See also     


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


Detects if the transform algorithm is supported by the tranform.

Declaration

[C#]
    static bool IsTransformAlgorithmSupported(string Algorithm);

[VB.NET]
    Shared Function IsTransformAlgorithmSupported(ByVal Algorithm As String) As Boolean

[Pascal]
    class function IsTransformAlgorithmSupported(const Algorithm : XMLString) : boolean; virtual;

[C++]
    static bool IsTransformAlgorithmSupported(const sb_u16string &Algorithm);
    static bool IsTransformAlgorithmSupported(const std::wstring &Algorithm);

[PHP]
    bool IsTransformAlgorithmSupported(string $Algorithm)

[Java]
    static boolean isTransformAlgorithmSupported(TElXMLTransform> this, String Algorithm);

Parameters

  • Algorithm - the URI to the transform algorithm

Return value

    Returns True if the algorithm is supported, and False otherwise.

Description

    Use this static method to detect if certain transform algorithm is supported by the current transform.

See also:     GetDefaultTransformAlgorithmURI     TransformAlgorithmURI    

Discuss this help topic in SecureBlackbox Forum