Discuss this help topic in SecureBlackbox Forum

TElXMLSOAPClient.AddCompoundParameter

TElXMLSOAPClient     See also     


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


Adds a new compound parameter to the list.

Declaration

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

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

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

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

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

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

Parameters

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

Return value

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

Description

This is a convenience method for adding a compound message operation parameter.

Discuss this help topic in SecureBlackbox Forum