Table of Contents

Class SystemTrackingConfiguration

Namespace
Dynamicweb.Tracking
Assembly
Dynamicweb.Tracking.dll
Configuration settings related to tracking. The settings are stored in the global system configuration.
public sealed class SystemTrackingConfiguration : TrackingConfiguration
Inheritance
SystemTrackingConfiguration
Inherited Members

Properties

Instance

Gets the instance of tracking configuration for the system.
public static SystemTrackingConfiguration Instance { get; }

Property Value

SystemTrackingConfiguration
The tracking configuration instance.

LoggingEnabled

Gets or sets a value indicating whether logging is enabled.
public override bool LoggingEnabled { get; set; }

Property Value

bool
true if logging is enabled; otherwise, false.

SessionCookieExpirationMinutes

Gets or sets the session cookie expiration in minutes.
public override int SessionCookieExpirationMinutes { get; set; }

Property Value

int

TrackingEnabled

Gets or sets a value indicating whether tracking is enabled.
public override bool TrackingEnabled { get; set; }

Property Value

bool
true if tracking is enabled; otherwise, false.

VisitorCookieExpirationMinutes

Gets or sets the visitor cookie expiration in minutes.
public override int VisitorCookieExpirationMinutes { get; set; }

Property Value

int
To top