Discuss this help topic in SecureBlackbox Forum

TElCookie.ParseServerCookie

TElCookie     See also     


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


Parses the cookie string received from the server.

Declaration

[C#]
    void ParseServerCookie(string ACookie, DateTime ReceivedAt, ref bool DiscardCookie);

[VB.NET]
    Sub ParseServerCookie(ByVal ACookie As String, ByVal ReceivedAt As DateTime, ByRef DiscardCookie As Boolean)

[Pascal]
    procedure ParseServerCookie(const ACookie : string; ReceivedAt : TDateTime; var DiscardCookie : boolean);

[C++]
    void ParseServerCookie(const std::string &ACookie, int64_t ReceivedAt, bool &DiscardCookie);

[PHP]
    void ParseServerCookie(string $ACookie, DateTime $ReceivedAt, bool &$DiscardCookie)

[Java]
    void parseServerCookie(String ACookie, Date ReceivedAt, TSBBoolean DiscardCookie);

Parameters

  • ACookie - the cookie to be parsed
  • DiscardCookie - set this parameter to True to discard the cookie
  • ReceivedAt - the moment when the cookie has been received

Description

    This function should be used by clients to parse server cookies.

See also:     AssembleClientCookie    

Discuss this help topic in SecureBlackbox Forum