Skip to content

Commit 967914e

Browse files
authored
Update for version 6.0.0.
1 parent 9b01780 commit 967914e

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@
22
[Mixpanel](https://mixpanel.com/) is a great analitics platform, but unfortunetally there is no official integration library for .NET. So if you are writing code on .NET and want to use Mixpanel, then ```mixpanel-csharp``` can be an excellent choice. ```mixpanel-csharp``` main idea is to hide most api details (you don't need to remember what time formatting to use, or in which cases you should prefix properties with ```$```) and concentrate on data that you want to analyze.
33

44
## Features
5-
- Supports full [Mixpanel HTTP Tracking API](https://mixpanel.com/help/reference/http)
6-
- [Send tracking messages](https://github.com/eealeivan/mixpanel-csharp/wiki/Sending-messages) synchronously or asynchronously, pack them into batches, create messages to send them later
7-
- Pass [message data](https://github.com/eealeivan/mixpanel-csharp/wiki/Message-data) in form that you prefer: predefined contract, `IDictionary<string, object>`, anonymous type or dynamic
5+
- Supports the following [Mixpanel Ingestion API's](https://developer.mixpanel.com/reference/ingestion-api):
6+
- [Track Events](https://developer.mixpanel.com/reference/track-event)
7+
- [User Profiles](https://developer.mixpanel.com/reference/user-profiles)
8+
- [Send messages simultaneously](https://github.com/eealeivan/mixpanel-csharp/wiki/Sending-messages) or just create a message instance and send it later
9+
- Pass [the message data](https://github.com/eealeivan/mixpanel-csharp/wiki/Message-data) in form that you prefer: predefined contract, `IDictionary<string, object>`, anonymous type or dynamic
810
- Add properties globally to all messages with super properties. Usable for properties such as `distinct_id`
911
- Great [configurability](https://github.com/eealeivan/mixpanel-csharp/wiki/Configuration). For example you can provide your own JSON serializer or function that will make HTTP requests
1012
- No dependencies. Keeps your project clean
11-
- Runs on .NET 4.5.2 and [.NET Standard 1.1](https://docs.microsoft.com/en-us/dotnet/standard/net-standard)
13+
- Runs on .NET 4.6.1 and [.NET Standard 2.0](https://docs.microsoft.com/en-us/dotnet/standard/net-standard)
1214
- Detailed [documentation](https://github.com/eealeivan/mixpanel-csharp/wiki)
1315

1416
## Sample usage for track message

0 commit comments

Comments
 (0)