DeletedRowInaccessibleException Konstruktoren

Definition

Initialisiert eine neue Instanz der DeletedRowInaccessibleException-Klasse.

Überlädt

Name Beschreibung
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 die Ursache dieser Ausnahme ist.

DeletedRowInaccessibleException()

Quelle:
DataException.cs
Quelle:
DataException.cs
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 Klasse DataRow , 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
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 angezeigt werden soll, wenn die Ausnahme ausgelöst wird.

Hinweise

Verwenden Sie die RowState Klasse DataRow , 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
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);
[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);
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}")>]
new System.Data.DeletedRowInaccessibleException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.DeletedRowInaccessibleException
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 Daten, die zum Serialisieren oder Deserialisieren eines Objekts erforderlich sind.

context
StreamingContext

Beschreibung der Quelle und des Ziels des angegebenen serialisierten Datenstroms.

Attribute

Weitere Informationen

Gilt für:

DeletedRowInaccessibleException(String, Exception)

Quelle:
DataException.cs
Quelle:
DataException.cs
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 die Ursache dieser Ausnahme ist.

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, die den Grund für die Ausnahme erläutert.

innerException
Exception

Die Ausnahme, die die Ursache der aktuellen Ausnahme ist, oder ein Nullverweis (Nothing in Visual Basic), wenn keine innere Ausnahme angegeben wird.

Hinweise

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

Gilt für: