Created
July 19, 2017 14:09
-
-
Save hishaamn/9b33f34b6fd0fe38e551c0f72a5a4b22 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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