public static Boolean IsTracking(this IPluginExecutionContext context, String tokenName, Object tokenValue = null)
        {
            ValidationHelper.EnsureNotNull(context);
            ValidationHelper.EnsureNotNull(tokenName);

            tokenValue = tokenValue ?? true;

            var found = context.FindToken(tokenName);

            return(found?.Equals(tokenValue) ?? false);
        }