WebGetCookies Function

Action

Gets the current value of the maximum number of cookies.

Include file

WebAPI.bdh

Syntax

WebGetCookies( ): number;

Return value

Current value of the maximum number of cookies

Example

dcltrans
  transaction TWebInit
  begin
    write("MaxCookiesPerDomain: "); write(WebGetCookies());
    writeln;
  end TWebInit;