AuthenticationFailureException 构造函数

定义

重载

AuthenticationFailureException(String)

使用指定的异常 message创建 的新AuthenticationFailureException实例。

AuthenticationFailureException(String, Exception)

使用指定的异常message和对此异常原因的内部异常的引用创建 的新实例AuthenticationFailureException

AuthenticationFailureException(String)

Source:
AuthenticationFailureException.cs

使用指定的异常 message创建 的新AuthenticationFailureException实例。

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)

Source:
AuthenticationFailureException.cs

使用指定的异常message和对此异常原因的内部异常的引用创建 的新实例AuthenticationFailureException

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

适用于