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';
SQLChanging the job Cookies config:
DECLARE @jobCookies wds.CookiesConfig = 'UseCookies: false'
SET @jobCookies.UseCookies = 1;
SET @jobConfig.Cookies = @jobCookies;
SQL