Discuss this help topic in SecureBlackbox Forum

TElXMLNamespaceMap.AddNamespace

TElXMLNamespaceMap     See also     


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


Adds a namespace to the map.

Declaration

[C#]
    void AddNamespace(string Prefix, string URI);

[VB.NET]
    Sub AddNamespace(ByVal Prefix As String, ByVal URI As String)

[Pascal]
    procedure AddNamespace(const Prefix, URI : WideString);

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

[PHP]
    void AddNamespace(string $Prefix, string $URI)

[Java]
    void addNamespace(String Prefix, String URI);

Parameters

  • Prefix - Prefix of the namespace to be added.
  • URI - URI value of the namespace to be added.

Description

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

See also:     Prefix     URI     RemoveNamespace    

Discuss this help topic in SecureBlackbox Forum