Skip to content

Instantly share code, notes, and snippets.

@BasLijten
Created August 6, 2019 15:00
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 BasLijten/a9cc69ce5cb18315d496d5161f5d1e68 to your computer and use it in GitHub Desktop.
Save BasLijten/a9cc69ce5cb18315d496d5161f5d1e68 to your computer and use it in GitHub Desktop.
public class FixPersonalize: Personalize
{
public override void Process(CustomizeRenderingArgs args)
{
Assert.ArgumentNotNull(args, "args");
if (args.IsCustomized)
{
return;
}
this.Evaluate(args);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment