Skip to content

Instantly share code, notes, and snippets.

@trnktms
Last active April 24, 2017 13:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trnktms/92eb9ba8b804d080060281d0b2378d1f to your computer and use it in GitHub Desktop.
Save trnktms/92eb9ba8b804d080060281d0b2378d1f to your computer and use it in GitHub Desktop.
using MyProject.Foundation.Xdb.Utils;
using System.Web.Mvc;
namespace MyProject.Feature.Demo.Controllers
{
public class DemoController : Controller
{
public ActionResult Demo()
{
XdbHelper.TriggerProfileKey("Activity", "tennis", 10);
return View("~/Views/Demo.cshtml");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment