Discuss this help topic in SecureBlackbox Forum

TElXMLSOAPCompoundParameter.AddBase64Binary

TElXMLSOAPCompoundParameter     See also     


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


Adds a new custom base64-encoded byte array to the list.

Declaration

[C#]
    int AddBase64Binary(string ParamName, byte[] Value);
    int AddBase64Binary(string ParamName, string ParamNamespaceURI, byte[] Value);

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

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

[C++]
    int32_t AddBase64Binary(const sb_u16string &ParamName, const std::vector<uint8_t> &Value);
    int32_t AddBase64Binary(const std::wstring &ParamName, const std::vector<uint8_t> &Value);
    int32_t AddBase64Binary(const sb_u16string &ParamName, const sb_u16string &ParamNamespaceURI, const std::vector<uint8_t> &Value);
    int32_t AddBase64Binary(const std::wstring &ParamName, const std::wstring &ParamNamespaceURI, const std::vector<uint8_t> &Value);

[PHP]
    integer AddBase64Binary(string $ParamName, array of byte|string|NULL $Value)
    integer AddBase64Binary(string $ParamName, string $ParamNamespaceURI, array of byte|string|NULL $Value)

[Java]
    int addBase64Binary(String ParamName, String ParamNamespaceURI, byte[] Value);
    int addBase64Binary(String ParamName, byte[] 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 base64-encoded byte array to the list.

See also:     Items    

Discuss this help topic in SecureBlackbox Forum