Discuss this help topic in SecureBlackbox Forum

TElXMLSOAPCompoundParameter.AddInt64

TElXMLSOAPCompoundParameter     See also     


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


Adds a new 64-bit integer parameter to the compound.

Declaration

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

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

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

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

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

[Java]
    int addInt64(String ParamName, long Value);
    int addInt64(String ParamName, String ParamNamespaceURI, long 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 a 64-bit integer value to the compound.

See also:     Items    

Discuss this help topic in SecureBlackbox Forum