DeletedRowInaccessibleException Construtores

Definição

Inicializa uma nova instância da classe DeletedRowInaccessibleException.Initializes a new instance of the DeletedRowInaccessibleException class.

Sobrecargas

DeletedRowInaccessibleException()

Inicializa uma nova instância da classe DeletedRowInaccessibleException.Initializes a new instance of the DeletedRowInaccessibleException class.

DeletedRowInaccessibleException(String)

Inicializa uma nova instância da classe DeletedRowInaccessibleException com a cadeia de caracteres especificada.Initializes a new instance of the DeletedRowInaccessibleException class with the specified string.

DeletedRowInaccessibleException(SerializationInfo, StreamingContext)

Inicializa uma nova instância da classe DeletedRowInaccessibleException com informações de serialização.Initializes a new instance of the DeletedRowInaccessibleException class with serialization information.

DeletedRowInaccessibleException(String, Exception)

Inicializa uma nova instância da classe DeletedRowInaccessibleException com uma mensagem de erro especificada e uma referência à exceção interna que é a causa da exceção.Initializes a new instance of the DeletedRowInaccessibleException class with a specified error message and a reference to the inner exception that is the cause of this exception.

DeletedRowInaccessibleException()

Inicializa uma nova instância da classe DeletedRowInaccessibleException.Initializes a new instance of the DeletedRowInaccessibleException class.

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

Comentários

Use o RowState de uma DataRow classe para determinar se uma linha foi excluída.Use the RowState of a DataRow class to determine whether a row has been deleted.

Confira também

Aplica-se a

DeletedRowInaccessibleException(String)

Inicializa uma nova instância da classe DeletedRowInaccessibleException com a cadeia de caracteres especificada.Initializes a new instance of the DeletedRowInaccessibleException class with the specified string.

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)

Parâmetros

s
String

A cadeia de caracteres a ser exibida quando a exceção é gerada.The string to display when the exception is thrown.

Comentários

Use o RowState de uma DataRow classe para determinar se uma linha foi excluída.Use the RowState of a DataRow class to determine whether a row has been deleted.

Confira também

Aplica-se a

DeletedRowInaccessibleException(SerializationInfo, StreamingContext)

Inicializa uma nova instância da classe DeletedRowInaccessibleException com informações de serialização.Initializes a new instance of the DeletedRowInaccessibleException class with serialization information.

protected:
 DeletedRowInaccessibleException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
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
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Parâmetros

info
SerializationInfo

Os dados necessários para serializar ou desserializar um objeto.The data that is required to serialize or deserialize an object.

context
StreamingContext

Descrição da origem e do destino do fluxo serializado especificado.Description of the source and destination of the specified serialized stream.

Confira também

Aplica-se a

DeletedRowInaccessibleException(String, Exception)

Inicializa uma nova instância da classe DeletedRowInaccessibleException com uma mensagem de erro especificada e uma referência à exceção interna que é a causa da exceção.Initializes a new instance of the DeletedRowInaccessibleException class with a specified error message and a reference to the inner exception that is the cause of this exception.

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)

Parâmetros

message
String

A mensagem de erro que explica a razão da exceção.The error message that explains the reason for the exception.

innerException
Exception

A exceção que é a causa da exceção atual ou uma referência nula (Nothing no Visual Basic) se nenhuma exceção interna é especificada.The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.

Comentários

Use o RowState de uma DataRow classe para determinar se uma linha foi excluída.Use the RowState of a DataRow class to determine whether a row has been deleted.

Aplica-se a