Discuss this help topic in SecureBlackbox Forum

TElHTTPSServer.UseCSRFAttacksProtection

TElHTTPSServer     See also     


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


Specifies whether to use CSRF token.

Declaration

[C#]
    bool UseCSRFAttacksProtection;

[VB.NET]
    Property UseCSRFAttacksProtection As Boolean

[Pascal]
    property UseCSRFAttacksProtection : boolean;

[C++]
    bool get_UseCSRFAttacksProtection();
    void set_UseCSRFAttacksProtection(bool Value);

[PHP]
    bool get_UseCSRFAttacksProtection()
    void set_UseCSRFAttacksProtection(bool $Value)

[Java]
    boolean getUseCSRFAttacksProtection();
    void setUseCSRFAttacksProtection(boolean Value);

Description

This property specifies whether to use a special token for preventing Cross-site request forgery (CSRF) attacks. The default value is true.

See also:     CSRFFieldName    

Discuss this help topic in SecureBlackbox Forum