AuthenticationFailureException Konstruktoren

Definition

Überlädt

AuthenticationFailureException(String)

Erstellt eine neue instance von AuthenticationFailureException mit der angegebenen Ausnahme message.

AuthenticationFailureException(String, Exception)

Erstellt eine neue instance von AuthenticationFailureException mit der angegebenen Ausnahme message und einen Verweis auf die innere Ausnahme, die die Ursache dieser Ausnahme ist.

AuthenticationFailureException(String)

Quelle:
AuthenticationFailureException.cs

Erstellt eine neue instance von AuthenticationFailureException mit der angegebenen Ausnahme message.

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

Parameter

message
String

Die Meldung, in der der Fehler beschrieben wird.

Gilt für:

AuthenticationFailureException(String, Exception)

Quelle:
AuthenticationFailureException.cs

Erstellt eine neue instance von AuthenticationFailureException mit der angegebenen Ausnahme message und einen Verweis auf die innere Ausnahme, die die Ursache dieser Ausnahme ist.

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)

Parameter

message
String

Die Meldung, in der der Fehler beschrieben wird.

innerException
Exception

Die Ausnahme, die die Ursache für die aktuelle Ausnahme ist, oder null.

Gilt für: