Discuss this help topic in SecureBlackbox Forum

TElCookie.AssembleClientCookie

TElCookie     See also     


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


Produces a cookie string to be passed to the server.

Declaration

[C#]
    string AssembleClientCookie(int Format);

[VB.NET]
    Function AssembleClientCookie(ByVal Format As Integer) As String

[Pascal]
    function AssembleClientCookie(Format : integer) : string;

[C++]
    void AssembleClientCookie(int32_t Format, std::string &OutResult);

[PHP]
    string AssembleClientCookie(integer $Format)

[Java]
    String assembleClientCookie(int Format);

Parameters

  • Format - the format of the cookie

Possible formats:

Return value

    Returns a cookie string to be passed to the server.

Description

    A client should use this method to assemble client's cookie into a string. Note, that AssembleClientCookie() does not add version number as the first name/value pair, this should be done on higher level, e.g., by TElCookieManager.

See also:     ParseServerCookie    

Discuss this help topic in SecureBlackbox Forum