THEMEN×
Ereignis-Serialisierung
Die Ereignis-Serialisierung wird von Verarbeitungsregeln nicht unterstützt. In the mobile SDK, you must use a special syntax in the context data parameter to set serialized events directly on the server call.
cdata["&&events"] = "event1:12341234";
Beispiel:
//create a context data dictionary var cdata = new Windows.Foundation.Collections.PropertySet(); // add events cdata["&&events"] = "event1:12341234"; var ADB = ADBMobile; // send the tracking call - use either a trackAction or TrackState call. // trackAction example: ADB.Analytics.trackAction("action", cdata); // trackState example: ADB.Analytics.trackState("State Name", cdata);