- trackIdentifier
- A unique name for this event.
- table
- An optional key/value store representing additional data that the developer would like to attach to this event.
Note: The maximum amount of data that can be sent in a single Insights.Track call is 1024 characters. Anything beyond this limit will be ignored and not reported.
For example, if an application played music the following code can be used to create an event when a given song is played:
C# Example
Insights.Track("MusicTrackPlayed", new Dictionary <string,string>{
{"TrackID", "E1D8AB93"},
{"Length", "183"}
});