SecureBlackbox

200+ components and classes for all aspects of digital security of your data

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


TElHTTPSClient.PreferKeepAlive

TElHTTPSClient     See also     


 

Forces client to request keep-alive mode from server

 

Declaration

[C#/Java]
    bool PreferKeepAlive;

[VB.NET]
    Property PreferKeepAlive As Boolean

[Pascal]
    property PreferKeepAlive: boolean;

[C++]
    int8_t get_PreferKeepAlive();
    void set_PreferKeepAlive(int8_t Value);

[PHP]
    bool get_PreferKeepAlive()
    void set_PreferKeepAlive(bool $Value)

   

Description

    Use this property to specify if socket connection should be kept open for further requests after HTTP response is received. If this property is false, socket connection will be closed just after HTTP response is received.

   

See also:     ContentLength     Date     MaxRedirections     OutputStream     RequestParameters     ServerStatusCode     ServerReasonPhrase     SSLEnabled    

 
Back to top