Содержание

DeleteCookies

Removes cookies from profile, according with specified template

Syntax

procedure DeleteCookie(aTemplate: TCSCookie);

Parameters

Notes

Examples

  1. //Delete cookies related to the domain .yandex.ru
    var template: TCSCookie;
    template.name := '';
    template.value := '';
    template.domain := '.yandex.ru';
    template.path := '';
    template.creation := -1;
    template.lastAccess := -1;
    template.expires := -1;
    DeleteCookies(template);