SendPeople() public static method

public static SendPeople ( object>.IDictionary peoProps, string operationType = "set" ) : void
peoProps object>.IDictionary
operationType string
return void
Beispiel #1
0
 // Exampe people property
 // Common setup for the first use
 private static void FirstUse(string date, string distinct_id)
 {
     Mixpanel.SendPeople(new Dictionary <string, object> {
         { "First Use", date },
         { "distinct_id", distinct_id },
     }, "set_once");
 }