You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can use the Tracker to track custom event types that you define. Custom events should only be used when you need to track complex events and control the processing of that event on the server. If you only need ot track simple "actions" then use the Action Tracking methods instead.
The following code illustrates how to create a custom event, set an event type that your server will listen for, set an event property (name/value pair), and log it:
This event will be sent to the server for processing. You can create an Event Handler to listen for this event and an entity if you want to log it to a new database table.
The text was updated successfully, but these errors were encountered:
Custom Event Tracking
You can use the Tracker to track custom event types that you define. Custom events should only be used when you need to track complex events and control the processing of that event on the server. If you only need ot track simple "actions" then use the Action Tracking methods instead.
The following code illustrates how to create a custom event, set an event type that your server will listen for, set an event property (name/value pair), and log it:
This event will be sent to the server for processing. You can create an Event Handler to listen for this event and an entity if you want to log it to a new database table.
The text was updated successfully, but these errors were encountered: