The Krenalis .NET SDK lets you send customer event data from your .NET applications to your specified destinations.
- Set up a Krenalis account.
- Set up a .NET source in the dashboard.
- Copy the event write key and the endpoint.
using Krenalis;
var config = new Config().SetEndpoint("<endpoint>");
Analytics.Initialize("<event write key>", config);
Analytics.Client.Track("Efg678Mnu", "Product added to cart", new Dictionary<string, object> {
{ "price", 32.17 },
});
Analytics.Client.Flush();
Analytics.Client.Dispose();Refer to the Krenalis events documentation for more information on the supported event types.
The Krenalis .NET SDK is released under the MIT license.