IdentityNotMappedException Konstruktoren

Definition

Initialisiert eine neue Instanz der IdentityNotMappedException-Klasse.

Überlädt

IdentityNotMappedException()

Initialisiert eine neue Instanz der IdentityNotMappedException-Klasse.

IdentityNotMappedException(String)

Initialisiert unter Verwendung der angegebenen Fehlermeldung eine neue Instanz der IdentityNotMappedException-Klasse.

IdentityNotMappedException(String, Exception)

Initialisiert eine neue Instanz der IdentityNotMappedException-Klasse mit der angegebenen Fehlermeldung und der angegebenen internen Ausnahme.

IdentityNotMappedException()

Initialisiert eine neue Instanz der IdentityNotMappedException-Klasse.

public:
 IdentityNotMappedException();
public IdentityNotMappedException ();
Public Sub New ()

Gilt für

IdentityNotMappedException(String)

Initialisiert unter Verwendung der angegebenen Fehlermeldung eine neue Instanz der IdentityNotMappedException-Klasse.

public:
 IdentityNotMappedException(System::String ^ message);
public IdentityNotMappedException (string message);
public IdentityNotMappedException (string? message);
new System.Security.Principal.IdentityNotMappedException : string -> System.Security.Principal.IdentityNotMappedException
Public Sub New (message As String)

Parameter

message
String

Die Fehlermeldung, in der die Ursache der Ausnahme erklärt wird.

Gilt für

IdentityNotMappedException(String, Exception)

Initialisiert eine neue Instanz der IdentityNotMappedException-Klasse mit der angegebenen Fehlermeldung und der angegebenen internen Ausnahme.

public:
 IdentityNotMappedException(System::String ^ message, Exception ^ inner);
public IdentityNotMappedException (string message, Exception inner);
public IdentityNotMappedException (string? message, Exception? inner);
new System.Security.Principal.IdentityNotMappedException : string * Exception -> System.Security.Principal.IdentityNotMappedException
Public Sub New (message As String, inner As Exception)

Parameter

message
String

Die Fehlermeldung, in der die Ursache der Ausnahme erklärt wird.

inner
Exception

Die Ausnahme, die die Ursache der aktuellen Ausnahme ist. Wenn inner nicht NULL ist, wird die aktuelle Ausnahme in einem catch-Block ausgelöst, der die innere Ausnahme behandelt.

Gilt für