Skip to content
This repository has been archived by the owner on Apr 1, 2022. It is now read-only.

Latest commit

 

History

History
36 lines (24 loc) · 900 Bytes

README.md

File metadata and controls

36 lines (24 loc) · 900 Bytes

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