Discuss this help topic in SecureBlackbox Forum

TElCookieManager.Domains

TElCookieManager     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Provides access to cookie domains

Declaration

[C#]
    TElCookieDomain Domains[int Index];

[VB.NET]
    Property Domains(ByVal Index As Integer) As TElCookieDomain

[Pascal]
    property Domains[Index : integer] : TElCookieDomain;

[C++]
    TElCookieDomain* get_Domains(int32_t Index);

[PHP]
    TElCookieDomain get_Domains(integer $Index)

[Java]
    TElCookieDomain getDomains(int Index);

Parameters

  • Index - index of the item in the list

Description

    Use this property to access particular cookie domain in the manager. Cookie domains are arrays of cookies, grouped by domain for faster access.

    Note, that in multithreaded environment with active instances of TElHTTPSClient (which can add, update and delete cookies) it can happen that the number of domains when you read DomainCount property will differ from the number of domains when you access Domain property.

See also:     DomainCount     AddDomain    

Discuss this help topic in SecureBlackbox Forum