Binary Reporting (ReportBinary)
caution
Businesses must not report personal information or other sensitive data.
Binary Report (ReportBinary)
Supported channel: INTL
Function Definition
public static void ReportBinary(string eventName, string data, int length, string specificChannel);
Parameter Details
| Parameters | Type | Explanation |
|---|---|---|
| eventName | String | Event |
| data | String | Binary data |
| length | int | Length of data |
| specificChannel | String | Specify channel 1. If no value is provided, an empty string will default to reporting to the initialized channel, that is, the channel configured to be reported in INTLConfig.ini; see Access Guidelines。 2. Report to a specific channel, for example "Facebook". 3. Report to multiple channels, separated by a comma "," such as "Facebook,Firebase". |
Sample Code
string data = ReadFile(fileName);
INTLAPI.ReportBinary("INTL_BINARY_TEST", data, data.Length, "");