CookiesConfig

Cookies settings

Fields

Name Type Description
UseCookies Bool Required. Defines if cookies should be saved and reused between requests

Initialization String Format

An instance can be initialized with a string of the following format: UseCookies: true|false

Examples

Quickly changing the job Cookies config:

SET @jobConfig.Cookies = 'UseCookies: true';
SQL

Changing the job Cookies config:

DECLARE @jobCookies wds.CookiesConfig = 'UseCookies: false'
SET @jobCookies.UseCookies = 1;

SET @jobConfig.Cookies = @jobCookies;
SQL

Please rotate your device to landscape mode

This documentation is specifically designed with a wider layout to provide a better reading experience for code examples, tables, and diagrams.
Rotating your device horizontally ensures you can see everything clearly without excessive scrolling or resizing.

Return to Web Data Source Home