Discuss this help topic in SecureBlackbox Forum

TElXMLSOAPCompoundParameter.AddInteger

TElXMLSOAPCompoundParameter     See also     


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


Adds a new integer parameter to the compound.

Declaration

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

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

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

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

[PHP]
    integer AddInteger(string $ParamName, integer $Value)
    integer AddInteger(string $ParamName, string $ParamNamespaceURI, integer $Value)

[Java]
    int addInteger(String ParamName, int Value);
    int addInteger(String ParamName, String ParamNamespaceURI, int Value);

Parameters

  • ParamName - the name of the item to be added.
  • ParamNamespaceURI - namespace URI of the new item.
  • Value - the value of the new item.

Return value

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

Description

Use this method to add an integer value to the compound.

See also:     Items    

Discuss this help topic in SecureBlackbox Forum