Discuss this help topic in SecureBlackbox Forum

TElHTTPSServer.CSRFFieldName

TElHTTPSServer     See also     


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


Specifies the name of the CSRF token field in the authentication form.

Declaration

[C#]
    string CSRFFieldName;

[VB.NET]
    Property CSRFFieldName As String

[Pascal]
    property CSRFFieldName : string;

[C++]
    void get_CSRFFieldName(std::string &OutResult);
    void set_CSRFFieldName(const std::string &Value);

[PHP]
    string get_CSRFFieldName()
    void set_CSRFFieldName(string $Value)

[Java]
    String getCSRFFieldName();
    void setCSRFFieldName(String Value);

Description

This property could be used to set the name of the CSRF token field in the built-in OAuth authentication form. This property is only used when AuthWebForm, and UseCSRFAttacksProtection are switched on. The default value is '_csrf'.

Discuss this help topic in SecureBlackbox Forum