HtmlHelper.AntiForgeryToken Method (String, String, String)
Note: This API is now obsolete.
Generates a hidden form field (anti-forgery token) that is validated when the form is submitted. The field value is generated using the specified salt value, domain, and path.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
'Declaration <ObsoleteAttribute("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 Function AntiForgeryToken ( _ salt As String, _ domain As String, _ path As String _ ) As MvcHtmlString 'Usage Dim instance As HtmlHelper Dim salt As String Dim domain As String Dim path As String Dim returnValue As MvcHtmlString returnValue = instance.AntiForgeryToken(salt, _ domain, path)
Parameters
- salt
- Type: System.String
The salt value, which can be any non-empty string.
- domain
- Type: System.String
The application domain.
- path
- Type: System.String
The virtual path.
The anti-forgery token can be used to help protect your application against cross-site request forgery. To use this feature, call the AntiForgeryToken method from a form and add the ValidateAntiForgeryTokenAttribute attribute to the action method that you want to protect.
Show: