NotImplementedException 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 NotImplementedException-Klasse.
Überlädt
NotImplementedException() |
Initialisiert eine neue Instanz der NotImplementedException-Klasse mit Standardeigenschaften. |
NotImplementedException(String) |
Initialisiert eine neue Instanz der NotImplementedException-Klasse mit einer angegebenen Fehlermeldung. |
NotImplementedException(SerializationInfo, StreamingContext) |
Veraltet.
Initialisiert eine neue Instanz der NotImplementedException-Klasse mit serialisierten Daten. |
NotImplementedException(String, Exception) |
Initialisiert eine neue Instanz der NotImplementedException-Klasse mit einer angegebenen Fehlermeldung und einem Verweis auf die innere Ausnahme, die diese Ausnahme ausgelöst hat. |
NotImplementedException()
- Quelle:
- NotImplementedException.cs
- Quelle:
- NotImplementedException.cs
- Quelle:
- NotImplementedException.cs
Initialisiert eine neue Instanz der NotImplementedException-Klasse mit Standardeigenschaften.
public:
NotImplementedException();
public NotImplementedException ();
Public Sub New ()
Hinweise
In der folgenden Tabelle werden die anfänglichen Eigenschaftenwerte für eine NotImplementedException-Instanz aufgeführt.
Eigenschaft | Wert |
---|---|
InnerException |
null . |
Message | Die leere Zeichenfolge (""). |
Gilt für:
NotImplementedException(String)
- Quelle:
- NotImplementedException.cs
- Quelle:
- NotImplementedException.cs
- Quelle:
- NotImplementedException.cs
Initialisiert eine neue Instanz der NotImplementedException-Klasse mit einer angegebenen Fehlermeldung.
public:
NotImplementedException(System::String ^ message);
public NotImplementedException (string message);
public NotImplementedException (string? message);
new NotImplementedException : string -> NotImplementedException
Public Sub New (message As String)
Parameter
- message
- String
Die Fehlermeldung, in der die Ursache der Ausnahme erklärt wird.
Hinweise
In der folgenden Tabelle werden die anfänglichen Eigenschaftenwerte für eine NotImplementedException-Instanz aufgeführt.
Eigenschaft | Wert |
---|---|
InnerException |
null . |
Message | Die Zeichenfolge der Fehlermeldung. |
Gilt für:
NotImplementedException(SerializationInfo, StreamingContext)
- Quelle:
- NotImplementedException.cs
- Quelle:
- NotImplementedException.cs
- Quelle:
- NotImplementedException.cs
Achtung
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
Initialisiert eine neue Instanz der NotImplementedException-Klasse mit serialisierten Daten.
protected:
NotImplementedException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected NotImplementedException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
protected NotImplementedException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new NotImplementedException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> NotImplementedException
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
new NotImplementedException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> NotImplementedException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Parameter
- info
- SerializationInfo
Die SerializationInfo, die die serialisierten Objektdaten für die ausgelöste Ausnahme enthält.
- context
- StreamingContext
Der StreamingContext, der die Kontextinformationen über die Quelle oder das Ziel enthält.
- Attribute
Gilt für:
NotImplementedException(String, Exception)
- Quelle:
- NotImplementedException.cs
- Quelle:
- NotImplementedException.cs
- Quelle:
- NotImplementedException.cs
Initialisiert eine neue Instanz der NotImplementedException-Klasse mit einer angegebenen Fehlermeldung und einem Verweis auf die innere Ausnahme, die diese Ausnahme ausgelöst hat.
public:
NotImplementedException(System::String ^ message, Exception ^ inner);
public NotImplementedException (string message, Exception inner);
public NotImplementedException (string? message, Exception? inner);
new NotImplementedException : string * Exception -> NotImplementedException
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 der inner
-Parameter nicht null
ist, wird die aktuelle Ausnahme in einem catch
-Block ausgelöst, der die innere Ausnahme behandelt.
Hinweise
Eine Ausnahme, die als direktes Ergebnis einer vorhergehenden Ausnahme ausgelöst wird, muss in der InnerException-Eigenschaft über einen Verweis auf die vorhergehende Ausnahme verfügen. Die InnerException-Eigenschaft gibt den gleichen Wert zurück, der an den Konstruktor übergeben wird, oder null
, wenn die InnerException-Eigenschaft den Wert der inneren Ausnahme nicht an den Konstruktor übergibt.
In der folgenden Tabelle werden die anfänglichen Eigenschaftenwerte für eine NotImplementedException-Instanz aufgeführt.
Eigenschaft | Wert |
---|---|
InnerException | Der Verweis auf die interne Ausnahme. |
Message | Die Zeichenfolge der Fehlermeldung. |