共用方式為


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

用於要求權杖的標頭名稱。

適用於