DeletedRowInaccessibleException Constructors

Definitie

Initialiseert een nieuw exemplaar van de DeletedRowInaccessibleException klasse.

Overloads

Name Description
DeletedRowInaccessibleException()

Initialiseert een nieuw exemplaar van de DeletedRowInaccessibleException klasse.

DeletedRowInaccessibleException(String)

Initialiseert een nieuw exemplaar van de DeletedRowInaccessibleException klasse met de opgegeven tekenreeks.

DeletedRowInaccessibleException(SerializationInfo, StreamingContext)
Verouderd.

Initialiseert een nieuw exemplaar van de DeletedRowInaccessibleException klasse met serialisatie-informatie.

DeletedRowInaccessibleException(String, Exception)

Initialiseert een nieuw exemplaar van de DeletedRowInaccessibleException klasse met een opgegeven foutbericht en een verwijzing naar de binnenste uitzondering die de oorzaak van deze uitzondering is.

DeletedRowInaccessibleException()

Bron:
DataException.cs
Bron:
DataException.cs
Bron:
DataException.cs
Bron:
DataException.cs
Bron:
DataException.cs

Initialiseert een nieuw exemplaar van de DeletedRowInaccessibleException klasse.

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

Opmerkingen

Gebruik de RowState klasse DataRow om te bepalen of een rij is verwijderd.

Zie ook

Van toepassing op

DeletedRowInaccessibleException(String)

Bron:
DataException.cs
Bron:
DataException.cs
Bron:
DataException.cs
Bron:
DataException.cs
Bron:
DataException.cs

Initialiseert een nieuw exemplaar van de DeletedRowInaccessibleException klasse met de opgegeven tekenreeks.

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)

Parameters

s
String

De tekenreeks die moet worden weergegeven wanneer de uitzondering wordt gegenereerd.

Opmerkingen

Gebruik de RowState klasse DataRow om te bepalen of een rij is verwijderd.

Zie ook

Van toepassing op

DeletedRowInaccessibleException(SerializationInfo, StreamingContext)

Bron:
DataException.cs
Bron:
DataException.cs
Bron:
DataException.cs
Bron:
DataException.cs
Bron:
DataException.cs

Let op

This API supports obsolete formatter-based serialization. It should not be called or extended by application code.

Initialiseert een nieuw exemplaar van de DeletedRowInaccessibleException klasse met serialisatie-informatie.

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)

Parameters

info
SerializationInfo

De gegevens die nodig zijn om een object te serialiseren of deserialiseren.

context
StreamingContext

Beschrijving van de bron en het doel van de opgegeven geserialiseerde stream.

Kenmerken

Zie ook

Van toepassing op

DeletedRowInaccessibleException(String, Exception)

Bron:
DataException.cs
Bron:
DataException.cs
Bron:
DataException.cs
Bron:
DataException.cs
Bron:
DataException.cs

Initialiseert een nieuw exemplaar van de DeletedRowInaccessibleException klasse met een opgegeven foutbericht en een verwijzing naar de binnenste uitzondering die de oorzaak van deze uitzondering is.

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)

Parameters

message
String

In het foutbericht wordt de reden voor de uitzondering uitgelegd.

innerException
Exception

De uitzondering die de oorzaak is van de huidige uitzondering of een null-verwijzing (Nothing in Visual Basic) als er geen interne uitzondering is opgegeven.

Opmerkingen

Gebruik de RowState klasse DataRow om te bepalen of een rij is verwijderd.

Van toepassing op