Discuss this help topic in SecureBlackbox Forum

TElXMLSOAPClient.AddInt64Parameter

TElXMLSOAPClient     See also     


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


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

Declaration

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

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

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

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

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

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

Parameters

  • ParamName - the name of the new parameter.
  • ParamNamespaceURI - the namespace URI of the new parameter.
  • Value - the value 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 64-bit integer message operation parameter.

See also:     Add parameters to SOAP message     AddParameter     Parameters    

Discuss this help topic in SecureBlackbox Forum