다음을 통해 공유


HtmlHelper.AntiForgeryToken 메서드

정의

오버로드

AntiForgeryToken()

폼을 제출할 때 유효성이 검사되는 숨겨진 폼 필드(위조 방지 토큰)를 생성합니다.

AntiForgeryToken(String)
사용되지 않음.

폼을 제출할 때 유효성이 검사되는 숨겨진 폼 필드(위조 방지 토큰)를 생성합니다. 필드 값은 지정된 솔트 값을 사용하여 생성됩니다.

AntiForgeryToken(String, String, String)
사용되지 않음.

폼을 제출할 때 유효성이 검사되는 숨겨진 폼 필드(위조 방지 토큰)를 생성합니다. 필드 값은 지정된 솔트 값, 도메인 및 경로를 사용하여 생성됩니다.

AntiForgeryToken()

폼을 제출할 때 유효성이 검사되는 숨겨진 폼 필드(위조 방지 토큰)를 생성합니다.

public System.Web.Mvc.MvcHtmlString AntiForgeryToken ();
member this.AntiForgeryToken : unit -> System.Web.Mvc.MvcHtmlString
Public Function AntiForgeryToken () As MvcHtmlString

반환

생성된 폼 필드(위조 방지 토큰)입니다.

적용 대상

AntiForgeryToken(String)

주의

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.

폼을 제출할 때 유효성이 검사되는 숨겨진 폼 필드(위조 방지 토큰)를 생성합니다. 필드 값은 지정된 솔트 값을 사용하여 생성됩니다.

[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

매개 변수

salt
String

솔트 값입니다. 이 값은 비어 있지 않은 모든 문자열일 수 있습니다.

반환

생성된 폼 필드(위조 방지 토큰)입니다.

특성

적용 대상

AntiForgeryToken(String, String, String)

주의

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.

폼을 제출할 때 유효성이 검사되는 숨겨진 폼 필드(위조 방지 토큰)를 생성합니다. 필드 값은 지정된 솔트 값, 도메인 및 경로를 사용하여 생성됩니다.

[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

매개 변수

salt
String

솔트 값입니다. 이 값은 비어 있지 않은 모든 문자열일 수 있습니다.

domain
String

애플리케이션 도메인입니다.

path
String

가상 경로입니다.

반환

생성된 폼 필드(위조 방지 토큰)입니다.

특성

적용 대상