AntiforgeryTokenSet(String, String, String, String) 构造函数

定义

创建 (cookie 和请求令牌) 的防伪造令牌对。

public:
 AntiforgeryTokenSet(System::String ^ requestToken, System::String ^ cookieToken, System::String ^ formFieldName, System::String ^ headerName);
public AntiforgeryTokenSet (string requestToken, string cookieToken, string formFieldName, string headerName);
public AntiforgeryTokenSet (string? requestToken, string? cookieToken, string formFieldName, string? headerName);
new Microsoft.AspNetCore.Antiforgery.AntiforgeryTokenSet : string * string * string * string -> Microsoft.AspNetCore.Antiforgery.AntiforgeryTokenSet
Public Sub New (requestToken As String, cookieToken As String, formFieldName As String, headerName As String)

参数

requestToken
String

请求中提供的令牌。

cookieToken
String

请求 Cookie 中提供的令牌。

formFieldName
String

用于请求令牌的窗体字段的名称。

headerName
String

用于请求令牌的标头的名称。

适用于