Discuss this help topic in SecureBlackbox Forum

TElCustomSSLExtensions.StatelessTLS

TElCustomSSLExtensions     


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


This property specifies whether to use a stateless TLS.

Declaration

[C#]
    bool StatelessTLS;

[VB.NET]
    Property StatelessTLS As Boolean

[Pascal]
    property StatelessTLS : boolean;

[C++]
    bool get_StatelessTLS();
    void set_StatelessTLS(bool Value);

[PHP]
    bool get_StatelessTLS()
    void set_StatelessTLS(bool $Value)

[Java]
    boolean getStatelessTLS();
    void setStatelessTLS(boolean Value);

Description

    Use this property to specify whether to apply the stateless TLS. A stateless TLS is a mechanism to resume a TLS session without requiring session-specific state at the TLS server as described in [RFC4507]. This feature is useful, for example, for servers which handle a large number of transactions from different users.

Discuss this help topic in SecureBlackbox Forum