DeletedRowInaccessibleException Konstruktoren

Definition

Initialisiert eine neue Instanz der DeletedRowInaccessibleException-Klasse.

Überlädt

DeletedRowInaccessibleException()

Initialisiert eine neue Instanz der DeletedRowInaccessibleException-Klasse.

DeletedRowInaccessibleException(String)

Initialisiert eine neue Instanz der DeletedRowInaccessibleException-Klasse mit der angegebenen Zeichenfolge.

DeletedRowInaccessibleException(SerializationInfo, StreamingContext)
Veraltet.

Initialisiert eine neue Instanz der DeletedRowInaccessibleException-Klasse mit Serialisierungsinformationen.

DeletedRowInaccessibleException(String, Exception)

Initialisiert eine neue Instanz der DeletedRowInaccessibleException-Klasse mit einer angegebenen Fehlermeldung und einem Verweis auf die innere Ausnahme, die diese Ausnahme ausgelöst hat.

DeletedRowInaccessibleException()

Quelle:
DataException.cs
Quelle:
DataException.cs
Quelle:
DataException.cs

Initialisiert eine neue Instanz der DeletedRowInaccessibleException-Klasse.

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

Hinweise

Verwenden Sie die RowState einer DataRow -Klasse, um zu bestimmen, ob eine Zeile gelöscht wurde.

Weitere Informationen

Gilt für:

DeletedRowInaccessibleException(String)

Quelle:
DataException.cs
Quelle:
DataException.cs
Quelle:
DataException.cs

Initialisiert eine neue Instanz der DeletedRowInaccessibleException-Klasse mit der angegebenen Zeichenfolge.

public:
 DeletedRowInaccessibleException(System::String ^ s);
public DeletedRowInaccessibleException (string? s);
public DeletedRowInaccessibleException (string s);
new System.Data.DeletedRowInaccessibleException : string -> System.Data.DeletedRowInaccessibleException
Public Sub New (s As String)

Parameter

s
String

Die Zeichenfolge, die beim Auslösen der Ausnahme angezeigt werden soll.

Hinweise

Verwenden Sie die RowState einer DataRow -Klasse, um zu bestimmen, ob eine Zeile gelöscht wurde.

Weitere Informationen

Gilt für:

DeletedRowInaccessibleException(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 DeletedRowInaccessibleException-Klasse mit Serialisierungsinformationen.

protected:
 DeletedRowInaccessibleException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected DeletedRowInaccessibleException (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 DeletedRowInaccessibleException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Data.DeletedRowInaccessibleException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.DeletedRowInaccessibleException
[<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.DeletedRowInaccessibleException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.DeletedRowInaccessibleException
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:

DeletedRowInaccessibleException(String, Exception)

Quelle:
DataException.cs
Quelle:
DataException.cs
Quelle:
DataException.cs

Initialisiert eine neue Instanz der DeletedRowInaccessibleException-Klasse mit einer angegebenen Fehlermeldung und einem Verweis auf die innere Ausnahme, die diese Ausnahme ausgelöst hat.

public:
 DeletedRowInaccessibleException(System::String ^ message, Exception ^ innerException);
public DeletedRowInaccessibleException (string? message, Exception? innerException);
public DeletedRowInaccessibleException (string message, Exception innerException);
new System.Data.DeletedRowInaccessibleException : string * Exception -> System.Data.DeletedRowInaccessibleException
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.

Hinweise

Verwenden Sie die RowState einer DataRow -Klasse, um zu bestimmen, ob eine Zeile gelöscht wurde.

Gilt für: