Discuss this help topic in SecureBlackbox Forum

TElXMLSOAPClient.AddBooleanParameter

TElXMLSOAPClient     See also     


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


Adds a new boolean parameter to the list.

Declaration

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

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

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

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

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

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

See also:     Add parameters to SOAP message     AddParameter     Parameters    

Discuss this help topic in SecureBlackbox Forum