Discuss this help topic in SecureBlackbox Forum

TElXMLSOAPCompoundParameter.AddBoolean

TElXMLSOAPCompoundParameter     See also     


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


Adds a new boolean parameter to the compound.

Declaration

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

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

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

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

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

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

See also:     Items    

Discuss this help topic in SecureBlackbox Forum