AuthenticationFailureException 생성자

정의

오버로드

AuthenticationFailureException(String)

지정된 예외message를 사용하여 의 AuthenticationFailureException 새 instance 만듭니다.

AuthenticationFailureException(String, Exception)

지정된 예외와 이 예외의 AuthenticationFailureException 원인인 내부 예외 message 에 대한 참조를 사용하여 의 새 instance 만듭니다.

AuthenticationFailureException(String)

지정된 예외message를 사용하여 의 AuthenticationFailureException 새 instance 만듭니다.

public AuthenticationFailureException (string? message);
new Microsoft.AspNetCore.Authentication.AuthenticationFailureException : string -> Microsoft.AspNetCore.Authentication.AuthenticationFailureException
Public Sub New (message As String)

매개 변수

message
String

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

적용 대상

AuthenticationFailureException(String, Exception)

지정된 예외와 이 예외의 AuthenticationFailureException 원인인 내부 예외 message 에 대한 참조를 사용하여 의 새 instance 만듭니다.

public AuthenticationFailureException (string? message, Exception? innerException);
new Microsoft.AspNetCore.Authentication.AuthenticationFailureException : string * Exception -> Microsoft.AspNetCore.Authentication.AuthenticationFailureException
Public Sub New (message As String, innerException As Exception)

매개 변수

message
String

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

innerException
Exception

현재 예외의 원인인 예외 또는 null입니다.

적용 대상