Discuss this help topic in SecureBlackbox Forum

TElXMLSOAPClient.AddDoubleParameter

TElXMLSOAPClient     See also     


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


Adds a new Double parameter to the list.

Declaration

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

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

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

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

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

[Java]
    int addDoubleParameter(String ParamName, double Value);
    int addDoubleParameter(String ParamName, String ParamNamespaceURI, double 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 Double message operation parameter.

See also:     Add parameters to SOAP message     AddParameter     Parameters    

Discuss this help topic in SecureBlackbox Forum