May 2019
Intermediate to advanced
504 pages
11h 50m
English
By using the App Center SDK, telemetry information can be collected along with events, which can contain additional information about a specific user action or application execution pattern. These additional data points, also known as dimensions, are generally used to give the user a quick snapshot of the data that is used to execute the function that triggered the telemetry event. In simple terms, a telemetry event can be described as the event name and the additional dimensions for this event. Let's begin by creating our telemetry model:
public abstract class TelemetryEvent { public TelemetryEvent() { Properties = new Dictionary<string, string>(); } public
Read now
Unlock full access