HtmlHelper.AntiForgeryToken Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Przeciążenia
AntiForgeryToken() |
Generuje ukryte pole formularza (token antyugeryjny), które jest weryfikowane podczas przesyłania formularza. |
AntiForgeryToken(String) |
Przestarzałe.
Generuje ukryte pole formularza (token antyugeryjny), które jest weryfikowane podczas przesyłania formularza. Wartość pola jest generowana przy użyciu określonej wartości soli. |
AntiForgeryToken(String, String, String) |
Przestarzałe.
Generuje ukryte pole formularza (token antyugeryjny), które jest weryfikowane podczas przesyłania formularza. Wartość pola jest generowana przy użyciu określonej wartości soli, domeny i ścieżki. |
AntiForgeryToken()
Generuje ukryte pole formularza (token antyugeryjny), które jest weryfikowane podczas przesyłania formularza.
public System.Web.Mvc.MvcHtmlString AntiForgeryToken ();
member this.AntiForgeryToken : unit -> System.Web.Mvc.MvcHtmlString
Public Function AntiForgeryToken () As MvcHtmlString
Zwraca
Wygenerowane pole formularza (token ochrony przed fałszerszami).
Dotyczy
AntiForgeryToken(String)
Przestroga
This method is deprecated. Use the AntiForgeryToken() method instead. To specify custom data to be embedded within the token, use the static AntiForgeryConfig.AdditionalDataProvider property.
Generuje ukryte pole formularza (token antyugeryjny), które jest weryfikowane podczas przesyłania formularza. Wartość pola jest generowana przy użyciu określonej wartości soli.
[System.Obsolete("This method is deprecated. Use the AntiForgeryToken() method instead. To specify custom data to be embedded within the token, use the static AntiForgeryConfig.AdditionalDataProvider property.", true)]
public System.Web.Mvc.MvcHtmlString AntiForgeryToken (string salt);
member this.AntiForgeryToken : string -> System.Web.Mvc.MvcHtmlString
Public Function AntiForgeryToken (salt As String) As MvcHtmlString
Parametry
- salt
- String
Wartość soli, która może być dowolnym ciągiem niepustym.
Zwraca
Wygenerowane pole formularza (token ochrony przed fałszerszami).
- Atrybuty
Dotyczy
AntiForgeryToken(String, String, String)
Przestroga
This method is deprecated. Use the AntiForgeryToken() method instead. To specify a custom domain for the generated cookie, use the <httpCookies> configuration element. To specify custom data to be embedded within the token, use the static AntiForgeryConfig.AdditionalDataProvider property.
Generuje ukryte pole formularza (token antyugeryjny), które jest weryfikowane podczas przesyłania formularza. Wartość pola jest generowana przy użyciu określonej wartości soli, domeny i ścieżki.
[System.Obsolete("This method is deprecated. Use the AntiForgeryToken() method instead. To specify a custom domain for the generated cookie, use the <httpCookies> configuration element. To specify custom data to be embedded within the token, use the static AntiForgeryConfig.AdditionalDataProvider property.", true)]
public System.Web.Mvc.MvcHtmlString AntiForgeryToken (string salt, string domain, string path);
member this.AntiForgeryToken : string * string * string -> System.Web.Mvc.MvcHtmlString
Public Function AntiForgeryToken (salt As String, domain As String, path As String) As MvcHtmlString
Parametry
- salt
- String
Wartość soli, która może być dowolnym ciągiem niepustym.
- domain
- String
Domena aplikacji.
- path
- String
Ścieżka wirtualna.
Zwraca
Wygenerowane pole formularza (token ochrony przed fałszerszami).
- Atrybuty