Discuss this help topic in SecureBlackbox Forum

TElXMLSOAPCompoundParameter.AddCompound

TElXMLSOAPCompoundParameter     See also     


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


Adds a new compound complex parameter to this compound.

Declaration

[C#]
    int AddCompound(string ParamName);
    int AddCompound(string ParamName, string ParamNamespaceURI);

[VB.NET]
    Function AddCompound(ByVal ParamName As String) As Integer
    Function AddCompound(ByVal ParamName As String, ByVal ParamNamespaceURI As String) As Integer

[Pascal]
    function AddCompound(const ParamName : XMLString) : Integer; overload;
    function AddCompound(const ParamName, ParamNamespaceURI : XMLString) : Integer; overload;

[C++]
    int32_t AddCompound(const sb_u16string &ParamName);
    int32_t AddCompound(const std::wstring &ParamName);
    int32_t AddCompound(const sb_u16string &ParamName, const sb_u16string &ParamNamespaceURI);
    int32_t AddCompound(const std::wstring &ParamName, const std::wstring &ParamNamespaceURI);

[PHP]
    integer AddCompound(string $ParamName)
    integer AddCompound(string $ParamName, string $ParamNamespaceURI)

[Java]
    int addCompound(String ParamName, String ParamNamespaceURI);
    int addCompound(String ParamName);

Parameters

  • ParamName - the name of the new parameter.
  • ParamNamespaceURI - namespace URI of the new parameter.

Return value

Returns the index of the newly added item on success, and -1 on failure.

Description

Use this method to add a compound parameter to the list.

See also:     Items    

Discuss this help topic in SecureBlackbox Forum