You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 13/umbraco-engage/developers/analytics/client-side-events-and-additional-javascript-files/additional-measurements-with-the-analytics-scripts.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ description: >-
9
9
You can add the Umbraco Engage Analytics JavaScript file to your website by placing this code before the closing `</body>` tag of your website.
Copy file name to clipboardExpand all lines: 13/umbraco-engage/developers/analytics/client-side-events-and-additional-javascript-files/bridging-library-for-google-analytics.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ We have included a bridging JavaScript file to "catch" all Google Analytics even
12
12
Add a reference to `umbracoEngage.analytics.ga4-bridge.min.js`:
Copy file name to clipboardExpand all lines: 13/umbraco-engage/developers/analytics/client-side-events-and-additional-javascript-files/bridging-library-for-google-tag-manager.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,5 +10,5 @@ When using Google Tag Manager you can collect all events in Umbraco Engage. This
10
10
To include the file add the following code before the closing `body` tag in your HTML:
Copy file name to clipboardExpand all lines: 13/umbraco-engage/developers/analytics/client-side-events-and-additional-javascript-files/google-analytics-blocker-detection.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ When a visitor runs an Adblocker or cookieblocker the visitor is likely not trac
10
10
This is made possible by a JavaScript file that you can include before the closing `body`-tag in your HTML:
Copy file name to clipboardExpand all lines: 13/umbraco-engage/developers/introduction/the-umbraco-engage-cookie/module-permissions.md
+44-2Lines changed: 44 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,34 @@ This interface defines 3 methods that you will have to implement:
14
14
15
15
{% code overflow="wrap" %}
16
16
```csharp
17
-
/// <summary>/// Indicates if A/B testing is allowed for the given request context./// If false, the visitor will not be assigned to any A/B tests and will not/// see any active A/B test content./// </summary>/// <param name="context">Context of the request</param>/// <returns>True if A/B testing is allowed, otherwise false.</returns>bool AbTestingIsAllowed(HttpContextBase context);/// <summary>/// Indicates if Analytics is allowed for the given request context./// If false, the visitor will be treated as the built-in Anonymous visitor/// and all their activity will be assigned to the Anonymous visitor rather than the specific visitor./// No A/B testing or Personalization will be allowed either if this is false regardless of their/// respective IsAllowed() outcomes./// In addition, no cookie will be sent to the visitor when this is set to false./// </summary>/// <param name="context">Context of the request</param>/// <returns>True if Analytics is allowed, otherwise false.</returns>bool AnalyticsIsAllowed(HttpContextBase context);/// <summary>/// Indicates if Personalization testing is allowed for the given request context./// If false, the visitor will not see any personalized content./// </summary>/// <param name="context">Context of the request</param>/// <returns>True if Personalization is allowed, otherwise false.</returns>bool PersonalizationIsAllowed(HttpContextBase context);
17
+
/// <summary>
18
+
/// Indicates if A/B testing is allowed for the given request context.
19
+
/// If false, the visitor will not be assigned to any A/B tests and will not
20
+
/// see any active A/B test content.
21
+
/// </summary>
22
+
/// <paramname="context">Context of the request</param>
23
+
/// <returns>True if A/B testing is allowed, otherwise false.</returns>
24
+
boolAbTestingIsAllowed(HttpContextBasecontext);
25
+
26
+
/// <summary>
27
+
/// Indicates if Analytics is allowed for the given request context.
28
+
/// If false, the visitor will be treated as the built-in Anonymous visitor
29
+
/// and all their activity will be assigned to the Anonymous visitor rather than the specific visitor.
30
+
/// No A/B testing or Personalization will be allowed either if this is false regardless of their
31
+
/// respective IsAllowed() outcomes.
32
+
/// In addition, no cookie will be sent to the visitor when this is set to false.
33
+
/// </summary>
34
+
/// <paramname="context">Context of the request</param>
35
+
/// <returns>True if Analytics is allowed, otherwise false.</returns>
36
+
boolAnalyticsIsAllowed(HttpContextBasecontext);
37
+
38
+
/// <summary>
39
+
/// Indicates if Personalization testing is allowed for the given request context.
40
+
/// If false, the visitor will not see any personalized content.
41
+
/// </summary>
42
+
/// <paramname="context">Context of the request</param>
43
+
/// <returns>True if Personalization is allowed, otherwise false.</returns>
0 commit comments