DBConcurrencyException Konstruktory

Definicja

Inicjuje nowe wystąpienie klasy DBConcurrencyException.

Przeciążenia

DBConcurrencyException()

Źródło:
DBConcurrencyException.cs
Źródło:
DBConcurrencyException.cs
Źródło:
DBConcurrencyException.cs
Źródło:
DBConcurrencyException.cs
Źródło:
DBConcurrencyException.cs

Inicjuje nowe wystąpienie klasy DBConcurrencyException.

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

Uwagi

Konstruktor bez parametrów inicjuje wszystkie pola do wartości domyślnych.

Zobacz też

  • Adaptery danych i Czytniki danych

Dotyczy

DBConcurrencyException(String)

Źródło:
DBConcurrencyException.cs
Źródło:
DBConcurrencyException.cs
Źródło:
DBConcurrencyException.cs
Źródło:
DBConcurrencyException.cs
Źródło:
DBConcurrencyException.cs

Inicjuje nowe wystąpienie klasy DBConcurrencyException.

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

Parametry

message
String

Ciąg tekstowy opisujący szczegóły wyjątku.

Zobacz też

  • Adaptery danych i Czytniki danych

Dotyczy

DBConcurrencyException(String, Exception)

Źródło:
DBConcurrencyException.cs
Źródło:
DBConcurrencyException.cs
Źródło:
DBConcurrencyException.cs
Źródło:
DBConcurrencyException.cs
Źródło:
DBConcurrencyException.cs

Inicjuje nowe wystąpienie klasy DBConcurrencyException.

public:
 DBConcurrencyException(System::String ^ message, Exception ^ inner);
public DBConcurrencyException(string? message, Exception? inner);
public DBConcurrencyException(string message, Exception inner);
new System.Data.DBConcurrencyException : string * Exception -> System.Data.DBConcurrencyException
Public Sub New (message As String, inner As Exception)

Parametry

message
String

Ciąg tekstowy opisujący szczegóły wyjątku.

inner
Exception

Odwołanie do wyjątku wewnętrznego.

Uwagi

Możesz utworzyć nowy wyjątek, który przechwytuje wcześniejszy wyjątek. Kod, który obsługuje drugi wyjątek, może użyć dodatkowych informacji z wcześniejszego wyjątku, nazywanego również wyjątkiem wewnętrznym, aby zbadać przyczynę początkowego błędu.

Zobacz też

  • Adaptery danych i Czytniki danych

Dotyczy

DBConcurrencyException(String, Exception, DataRow[])

Źródło:
DBConcurrencyException.cs
Źródło:
DBConcurrencyException.cs
Źródło:
DBConcurrencyException.cs
Źródło:
DBConcurrencyException.cs
Źródło:
DBConcurrencyException.cs

Inicjuje nowe wystąpienie klasy DBConcurrencyException.

public:
 DBConcurrencyException(System::String ^ message, Exception ^ inner, cli::array <System::Data::DataRow ^> ^ dataRows);
public DBConcurrencyException(string? message, Exception? inner, System.Data.DataRow[]? dataRows);
public DBConcurrencyException(string message, Exception inner, System.Data.DataRow[] dataRows);
new System.Data.DBConcurrencyException : string * Exception * System.Data.DataRow[] -> System.Data.DBConcurrencyException
Public Sub New (message As String, inner As Exception, dataRows As DataRow())

Parametry

message
String

Komunikat o błędzie, który wyjaśnia przyczynę tego wyjątku.

inner
Exception

Wyjątek, który jest przyczyną bieżącego wyjątku lub odwołanie o wartości null (Nothing w Visual Basic), jeśli nie określono wyjątku wewnętrznego.

dataRows
DataRow[]

Tablica zawierająca DataRow obiekty, których błąd aktualizacji wygenerował ten wyjątek.

Zobacz też

  • Adaptery danych i Czytniki danych

Dotyczy