MixpanelClientDotNet.WPF

This project provides basic API integration for using Mixpanel from .NET applications.


Keywords
WPF, ixpanel, .NET
License
Apache-2.0
Install
Install-Package MixpanelClientDotNet.WPF -Version 1.0.0.8

Documentation

MixpanelClientDotNet

This project provides basic API integration for using Mixpanel from .NET applications.

Supported Platform : UWP, .NET(4.5.1)

Current Features:

Usage:

Step 1. install nuget:

Step 2. new the MixpanelClient instance.

IMixpanelClient tracker = new MixpanelClient("your API token");

Step 3. new the EventData, and set properties.

var eventData = new EventData("event name");
eventData.SetProperty("key1", 1);
eventData.SetProperty("key2", "name");
eventData.SetProperty("ket3", true);
tracker.TrackEvent(eventData);

Licence

Licenced under the Apache 2.0 licence