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

poumason/MixpanelClientDotNet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages