Closed kyurkchyan closed 1 year ago
Hi,
var mc = new MixpanelClient("e3bc4100330c35722740fb8c6f5abddc");
// Get message but not send it yet (token will be in the message)
MixpanelMessage msg = mc.GetTrackMessage("Level Complete", new
{
DistinctId = "12345",
LevelNumber = 5,
Duration = TimeSpan.FromMinutes(1)
});
await mc.SendAsync(msg);
Hey @eealeivan thanks for getting back. I hoped that the SDK would handle the storage, as it's the case with native iOS/Android SDKs. I will try to share my storage/queueing implementation after it works properly for our app. Perhaps, we could include that implementation in the library.
I have two main questions.