Discuss this help topic in SecureBlackbox Forum

TElXMLDOMNode.GetOuterXMLCanonical

TElXMLDOMNode     See also     


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


Returns the XML representation of the node in canonicalized form.

Declaration

[C#]
    string GetOuterXMLCanonical(TElXMLCanonicalizationMethod aMethod);
    string GetOuterXMLCanonical(TElXMLCanonicalizationMethod aMethod, string InclNSPrefixList);

[VB.NET]
    Function GetOuterXMLCanonical(ByVal aMethod As TElXMLCanonicalizationMethod) As String
    Function GetOuterXMLCanonical(ByVal aMethod As TElXMLCanonicalizationMethod, ByVal InclNSPrefixList As String) As String

[Pascal]
    function GetOuterXMLCanonical(aMethod : TElXMLCanonicalizationMethod) : WideString;

[C++]
    void GetOuterXMLCanonical(TElXMLCanonicalizationMethod aMethod, sb_u16string &OutResult);
    void GetOuterXMLCanonical(TElXMLCanonicalizationMethod aMethod, std::wstring &OutResult);
    void GetOuterXMLCanonical(TElXMLCanonicalizationMethod aMethod, const sb_u16string &InclNSPrefixList, sb_u16string &OutResult);
    void GetOuterXMLCanonical(TElXMLCanonicalizationMethod aMethod, const std::wstring &InclNSPrefixList, std::wstring &OutResult);

[PHP]
    string GetOuterXMLCanonical(integer $aMethod)
    string GetOuterXMLCanonical(integer $aMethod, string $InclNSPrefixList)

[Java]
    String getOuterXMLCanonical(TElXMLCanonicalizationMethod aMethod);
    String getOuterXMLCanonical(TElXMLCanonicalizationMethod aMethod, String InclNSPrefixList);

Parameters

  • aMethod - Canonicalization method.
  • InclNSPrefixList - ...

Values:

Description

    Use this method to retrieve the XML, which contains a node in canonicalized forms. Currently only xcmCanon and xcmCanonComment are supported.

See also:     OuterXML    

Discuss this help topic in SecureBlackbox Forum