IdentityNotMappedException Konstruktoren
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Initialisiert eine neue Instanz der IdentityNotMappedException-Klasse.
Überlädt
| Name | Beschreibung |
|---|---|
| IdentityNotMappedException() |
Initialisiert eine neue Instanz der IdentityNotMappedException-Klasse. |
| IdentityNotMappedException(String) |
Initialisiert eine neue Instanz der Klasse mithilfe der IdentityNotMappedException angegebenen Fehlermeldung. |
| IdentityNotMappedException(String, Exception) |
Initialisiert eine neue Instanz der Klasse mithilfe der IdentityNotMappedException angegebenen Fehlermeldung und der inneren Ausnahme. |
IdentityNotMappedException()
Initialisiert eine neue Instanz der IdentityNotMappedException-Klasse.
public:
IdentityNotMappedException();
public IdentityNotMappedException();
Public Sub New ()
Gilt für:
IdentityNotMappedException(String)
Initialisiert eine neue Instanz der Klasse mithilfe der IdentityNotMappedException angegebenen Fehlermeldung.
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, die den Grund für die Ausnahme erläutert.
Gilt für:
IdentityNotMappedException(String, Exception)
Initialisiert eine neue Instanz der Klasse mithilfe der IdentityNotMappedException angegebenen Fehlermeldung und der inneren 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, die den Grund für die Ausnahme erläutert.
- inner
- Exception
Die Ausnahme, die die Ursache der aktuellen Ausnahme ist. Wenn inner keine Null ist, wird die aktuelle Ausnahme in einem catch Block ausgelöst, der die innere Ausnahme behandelt.