Discuss this help topic in SecureBlackbox Forum

TElXMLNamespaceMap.FindNamespace

TElXMLNamespaceMap     See also     


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


Finds a namespace value by its prefix.

Declaration

[C#]
    string FindNamespace(string Prefix);

[VB.NET]
    Function FindNamespace(ByVal Prefix As String) As String

[Pascal]
    function FindNamespace(const Prefix : XMLString) : WideString;

[C++]
    void FindNamespace(const sb_u16string &Prefix, sb_u16string &OutResult);
    void FindNamespace(const std::wstring &Prefix, std::wstring &OutResult);

[PHP]
    string FindNamespace(string $Prefix)

[Java]
    String findNamespace(String Prefix);

Parameters

  • Prefix - Prefix of the namespace to be found.

Description

    Use this function to find a namespace value (URI) by its prefix.

See also:     Prefix     URI     AddNamespace     RemoveNamespace    

Discuss this help topic in SecureBlackbox Forum