In-app messaging
No additional steps are required for in-app notifications.
Tracking Screens
using WebEngageBridge;
...
// Set screen name
WebEngage.ScreenNavigated("Purchase Screen");
// Update current screen data
Dictionary<string, object> currentData = new Dictionary<string, object>();
currentData.Add("productId", "~hs7674");
currentData.Add("price", 1200);
WebEngage.SetScreenData(currentData);
// Set screen name with data
Dictionary<string, object> data = new Dictionary<string, object>();
data.Add("productId", "~hs7674");
data.Add("price", 1200);
WebEngage.ScreenNavigated("Purchase Screen", data);
Updated almost 5 years ago