Skip to content

Instantly share code, notes, and snippets.

@hishaamn
Created July 19, 2017 14:09
Show Gist options
  • Save hishaamn/9b33f34b6fd0fe38e551c0f72a5a4b22 to your computer and use it in GitHub Desktop.
Save hishaamn/9b33f34b6fd0fe38e551c0f72a5a4b22 to your computer and use it in GitHub Desktop.
public class ProcessProfileProcessor : ProcessItemProcessor
{
public override void Process(ProcessItemArgs args)
{
Assert.ArgumentNotNull((object) args, "args");
foreach (TrackingField trackingParameter in args.TrackingParameters)
{
TrackingProcessor.ProcessProfiles(args.Interaction, trackingParameter);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment