Skip to content

Instantly share code, notes, and snippets.

@hishaamn
Created December 2, 2017 12:33
Show Gist options
  • Save hishaamn/716758107338967079f864dd499377b2 to your computer and use it in GitHub Desktop.
Save hishaamn/716758107338967079f864dd499377b2 to your computer and use it in GitHub Desktop.
Check if user has already the specified outcome
Guid outcomeId= // your outcome ID
KeyBehaviorCache cache = Sitecore.Analytics.Tracker.Current.Contact.GetKeyBehaviorCache();
bool isAssociatedOutcome = cache.Outcomes.Any(a => a.Id == outcomeId);
if(!isAssociatedOutcome)
{
// continue with assignment of Outcome here
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment