Sdílet prostřednictvím


AuthenticationFailureException Konstruktory

Definice

Přetížení

AuthenticationFailureException(String)

Vytvoří novou instanci se AuthenticationFailureException zadanou výjimkou message.

AuthenticationFailureException(String, Exception)

Vytvoří novou instanci se AuthenticationFailureException zadanou výjimkou message a odkazem na vnitřní výjimku, která je příčinou této výjimky.

AuthenticationFailureException(String)

Zdroj:
AuthenticationFailureException.cs

Vytvoří novou instanci se AuthenticationFailureException zadanou výjimkou message.

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

Parametry

message
String

Zpráva popisující chybu

Platí pro

AuthenticationFailureException(String, Exception)

Zdroj:
AuthenticationFailureException.cs

Vytvoří novou instanci se AuthenticationFailureException zadanou výjimkou message a odkazem na vnitřní výjimku, která je příčinou této výjimky.

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)

Parametry

message
String

Zpráva popisující chybu

innerException
Exception

Výjimka, která je příčinou aktuální výjimky, nebo null.

Platí pro