Optional
blockedSpecify the cookie name(s) to never be written, this will cause any cookie name to never be created or updated, they will still be read unless also included in the ignoreCookies and may still be explicitly purged or deleted. If not provided defaults to the same list provided in ignoreCookies. (Since v2.8.8)
Optional
delHook function to delete the named cookie with the specified value, separated from setCookie to avoid the need to parse the value to determine whether the cookie is being added or removed.
The name of the cookie
The value to set to expire the cookie
Optional
domainCustom cookie domain. This is helpful if you want to share Application Insights cookies across subdomains.
Optional
enabledDefaults to true, A boolean that indicates whether the use of cookies by the SDK is enabled by the current instance. If false, the instance of the SDK initialized by this configuration will not store or read any data from cookies
Optional
getHook function to fetch the named cookie value.
The name of the cookie
Optional
ignoreSpecify the cookie name(s) to be ignored, this will cause any matching cookie name to never be read or written.
They may still be explicitly purged or deleted. You do not need to repeat the name in the blockedCookies
configuration.(Since v2.8.8)
Optional
pathSpecifies the path to use for the cookie, defaults to '/'
Optional
setHook function to set the named cookie with the specified value.
The name of the cookie
The value to set for the cookie
Configuration definition for instance based cookie management configuration