AuthenticationFailureException 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
AuthenticationFailureException(String) |
使用指定的异常 |
AuthenticationFailureException(String, Exception) |
使用指定的异常 |
AuthenticationFailureException(String)
使用指定的异常 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)
使用指定的异常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
。