Esempio n. 1
0
        public void CustomEventSample()
        {
            MParticle.Start(new Configuration("API KEY", "API-SECRET"));

            var customEvent = new CustomEvent("My Custom Event Name", CustomEvent.CustomEventTypeEnum.Location)
            {
                CustomAttributes = new Dictionary <string, string>()
                {
                    { "foo", "bar" }
                }
            };
        }
Esempio n. 2
0
 public void CreateApi()
 {
     MParticle.Start(new Configuration("API KEY", "API-SECRET"));
 }
 public MParticleTests()
 {
     MParticle.Start(new Configuration("api_key", "api_secret"));
 }