次の方法で共有


AuthenticationFailureException コンストラクター

定義

オーバーロード

AuthenticationFailureException(String)

指定した例外 messageを使用して、 のAuthenticationFailureException新しいインスタンスを作成します。

AuthenticationFailureException(String, Exception)

指定した例外と、この例外の AuthenticationFailureException 原因である内部例外 message への参照を使用して、 の新しいインスタンスを作成します。

AuthenticationFailureException(String)

ソース:
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)

ソース:
AuthenticationFailureException.cs

指定した例外と、この例外の AuthenticationFailureException 原因である内部例外 message への参照を使用して、 の新しいインスタンスを作成します。

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

適用対象