Discuss this help topic in SecureBlackbox Forum

TElXMLSOAPCompoundParameter.AddDouble

TElXMLSOAPCompoundParameter     See also     


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


Adds a new Double parameter to the compound.

Declaration

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

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

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

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

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

[Java]
    int addDouble(String ParamName, double Value);
    int addDouble(String ParamName, String ParamNamespaceURI, double 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 Double-precision value to the compound.

See also:     Items     ...    

Discuss this help topic in SecureBlackbox Forum