SecureBlackbox

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

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


TElHTTPSClient.ForceKeepAliveIfConnectionHeaderIsAbsent

TElHTTPSClient     See also     


 

Specifies if the absense of "Connection" header in the server response should be treated as an invitation to keep-alive mode.

 

Declaration

[C#/Java]
    bool ForceKeepAliveIfConnectionHeaderIsAbsent;

[VB.NET]
    Property ForceKeepAliveIfConnectionHeaderIsAbsent As Boolean

[Pascal]
    property ForceKeepAliveIfConnectionHeaderIsAbsent: boolean;

[C++]
    int8_t get_ForceKeepAliveIfConnectionHeaderIsAbsent();
    void set_ForceKeepAliveIfConnectionHeaderIsAbsent(int8_t Value);

[PHP]
    bool get_ForceKeepAliveIfConnectionHeaderIsAbsent()
    void set_ForceKeepAliveIfConnectionHeaderIsAbsent(bool $Value)

   

Description

    Set this property to True if the component should treat the absense of "Connection" header in the server response as an invitation to keep-alive mode.
    Note, that though keeping the connection alive is the default behavior according to HTTP 1.1 specification, some servers do not support it correctly.

   

See also:     PreferKeepAlive    

 
Back to top