다음을 통해 공유


AntiforgeryValidationException 생성자

정의

오버로드

AntiforgeryValidationException(String)

지정된 예외 메시지를 사용하여 의 AntiforgeryValidationException 새 instance 만듭니다.

AntiforgeryValidationException(String, Exception)

지정된 예외 메시지 및 내부 예외를 사용하여 의 AntiforgeryValidationException 새 instance 만듭니다.

AntiforgeryValidationException(String)

Source:
AntiforgeryValidationException.cs
Source:
AntiforgeryValidationException.cs
Source:
AntiforgeryValidationException.cs

지정된 예외 메시지를 사용하여 의 AntiforgeryValidationException 새 instance 만듭니다.

public:
 AntiforgeryValidationException(System::String ^ message);
public AntiforgeryValidationException (string message);
new Microsoft.AspNetCore.Antiforgery.AntiforgeryValidationException : string -> Microsoft.AspNetCore.Antiforgery.AntiforgeryValidationException
Public Sub New (message As String)

매개 변수

message
String

오류를 설명하는 메시지입니다.

적용 대상

AntiforgeryValidationException(String, Exception)

Source:
AntiforgeryValidationException.cs
Source:
AntiforgeryValidationException.cs
Source:
AntiforgeryValidationException.cs

지정된 예외 메시지 및 내부 예외를 사용하여 의 AntiforgeryValidationException 새 instance 만듭니다.

public:
 AntiforgeryValidationException(System::String ^ message, Exception ^ innerException);
public AntiforgeryValidationException (string message, Exception innerException);
public AntiforgeryValidationException (string message, Exception? innerException);
new Microsoft.AspNetCore.Antiforgery.AntiforgeryValidationException : string * Exception -> Microsoft.AspNetCore.Antiforgery.AntiforgeryValidationException
Public Sub New (message As String, innerException As Exception)

매개 변수

message
String

오류를 설명하는 메시지입니다.

innerException
Exception

내부 Exception입니다.

적용 대상