- Contents
SOAP Notifier COM API Developer's Guide
ISOAPBase64::DecodeToBinary Method
Synopsis
Decodes the base64 encoded data and returns it as a SAFEARRAY of bytes.
Function Prototype
HRESULT DecodeToBinary(
[in] BSTR bstrEncodedData,
[out, retval] SAFEARRAY(BYTE)* paResult
C/C++ Syntax
HRESULT DecodeToBinary(BSTR bstrEncodedData, SAFEARRAY(BYTE)* paResult);
Parameters
bstrEncodedData
The input parameter is a string that contains Base64-encoded data.
paResult
The decoded data is returned as a SAFEARRAY of bytes.