跳到主要内容

上报自定义事件步骤(ReportCustomEventStep)[仅限 Player Network SDK]

[Player Network SDK 仅限] 上报自定义事件数据,计算漏斗分析的换算率。

支持的平台

支持Android, iOS, Windows 平台。

函数定义

void ReportCustomEventStep(
string eventName,
uint step,
string stepName,
bool result,
int errorCode = 0,
string paramsJson = "{}");

入参说明

参数类型说明
eventNamestring事件名
stepuint步骤 ID
从 0 开始计数
stepNamestring步骤名
resultbool步骤结果
true:成功
false:失败
errorCodeint错误码
当 result=true 时,errorCode=0
当 result=false 时,errorCode 为自定义的错误码
paramsJsonstring额外的参数
JSON 格式

代码示例

UnionAdapterAPI.GetReportService().ReportCustomEventStep("eventName", 0, "stepName", true);