VersionNotFoundException 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 VersionNotFoundException-Klasse.
Überlädt
VersionNotFoundException() |
Initialisiert eine neue Instanz der VersionNotFoundException-Klasse. |
VersionNotFoundException(String) |
Initialisiert eine neue Instanz der VersionNotFoundException-Klasse mit der angegebenen Zeichenfolge. |
VersionNotFoundException(SerializationInfo, StreamingContext) |
Veraltet.
Initialisiert eine neue Instanz der VersionNotFoundException-Klasse mit Serialisierungsinformationen. |
VersionNotFoundException(String, Exception) |
Initialisiert eine neue Instanz der VersionNotFoundException-Klasse mit einer angegebenen Fehlermeldung und einem Verweis auf die innere Ausnahme, die diese Ausnahme ausgelöst hat. |
VersionNotFoundException()
- Quelle:
- DataException.cs
- Quelle:
- DataException.cs
- Quelle:
- DataException.cs
Initialisiert eine neue Instanz der VersionNotFoundException-Klasse.
public:
VersionNotFoundException();
public VersionNotFoundException ();
Public Sub New ()
Gilt für:
VersionNotFoundException(String)
- Quelle:
- DataException.cs
- Quelle:
- DataException.cs
- Quelle:
- DataException.cs
Initialisiert eine neue Instanz der VersionNotFoundException-Klasse mit der angegebenen Zeichenfolge.
public:
VersionNotFoundException(System::String ^ s);
public VersionNotFoundException (string? s);
public VersionNotFoundException (string s);
new System.Data.VersionNotFoundException : string -> System.Data.VersionNotFoundException
Public Sub New (s As String)
Parameter
- s
- String
Die Zeichenfolge, die beim Auslösen der Ausnahme angezeigt werden soll.
Gilt für:
VersionNotFoundException(SerializationInfo, StreamingContext)
- Quelle:
- DataException.cs
- Quelle:
- DataException.cs
- Quelle:
- DataException.cs
Achtung
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
Initialisiert eine neue Instanz der VersionNotFoundException-Klasse mit Serialisierungsinformationen.
protected:
VersionNotFoundException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected VersionNotFoundException (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 VersionNotFoundException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Data.VersionNotFoundException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.VersionNotFoundException
[<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 System.Data.VersionNotFoundException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.VersionNotFoundException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Parameter
- info
- SerializationInfo
Die zum Serialisieren bzw. Deserialisieren eines Objekts benötigten Daten.
- context
- StreamingContext
Beschreibung der Quelle und des Ziels des angegebenen serialisierten Streams.
- Attribute
Weitere Informationen
Gilt für:
VersionNotFoundException(String, Exception)
- Quelle:
- DataException.cs
- Quelle:
- DataException.cs
- Quelle:
- DataException.cs
Initialisiert eine neue Instanz der VersionNotFoundException-Klasse mit einer angegebenen Fehlermeldung und einem Verweis auf die innere Ausnahme, die diese Ausnahme ausgelöst hat.
public:
VersionNotFoundException(System::String ^ message, Exception ^ innerException);
public VersionNotFoundException (string? message, Exception? innerException);
public VersionNotFoundException (string message, Exception innerException);
new System.Data.VersionNotFoundException : string * Exception -> System.Data.VersionNotFoundException
Public Sub New (message As String, innerException As Exception)
Parameter
- message
- String
Die Fehlermeldung, in der die Ursache der Ausnahme erklärt wird.
- innerException
- Exception
Die Ausnahme, die die aktuelle Ausnahme verursacht hat, oder ein Nullverweis (Nothing
in Visual Basic), wenn keine innere Ausnahme angegeben ist.