DeletedRowInaccessibleException Class

Definition

Represents the exception that is thrown when an action is tried on a DataRow that has been deleted.

public ref class DeletedRowInaccessibleException : System::Data::DataException
public class DeletedRowInaccessibleException : System.Data.DataException
[System.Serializable]
public class DeletedRowInaccessibleException : System.Data.DataException
type DeletedRowInaccessibleException = class
    inherit DataException
[<System.Serializable>]
type DeletedRowInaccessibleException = class
    inherit DataException
Public Class DeletedRowInaccessibleException
Inherits DataException
Inheritance
DeletedRowInaccessibleException
Attributes

Remarks

To delete a DataRow, use the Delete method of a DataRow class. As soon as you have deleted a row, any attempts to modify it will generate the DeletedRowInaccessibleException.

The DeletedRowInaccessibleException is thrown when you use one of the following properties or methods that try to get or set the value of a deleted DataRow:

Use the RowState of a DataRow class to determine whether a row has been deleted. If it has been deleted, you can use the Original field to retrieve it because deleted rows have no values available for the Current state.

Constructors

DeletedRowInaccessibleException()

Initializes a new instance of the DeletedRowInaccessibleException class.

DeletedRowInaccessibleException(SerializationInfo, StreamingContext)
Obsolete.

Initializes a new instance of the DeletedRowInaccessibleException class with serialization information.

DeletedRowInaccessibleException(String)

Initializes a new instance of the DeletedRowInaccessibleException class with the specified string.

DeletedRowInaccessibleException(String, Exception)

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.

Properties

Data

Gets a collection of key/value pairs that provide additional user-defined information about the exception.

(Inherited from Exception)
HelpLink

Gets or sets a link to the help file associated with this exception.

(Inherited from Exception)
HResult

Gets or sets HRESULT, a coded numerical value that is assigned to a specific exception.

(Inherited from Exception)
InnerException

Gets the Exception instance that caused the current exception.

(Inherited from Exception)
Message

Gets a message that describes the current exception.

(Inherited from Exception)
Source

Gets or sets the name of the application or the object that causes the error.

(Inherited from Exception)
StackTrace

Gets a string representation of the immediate frames on the call stack.

(Inherited from Exception)
TargetSite

Gets the method that throws the current exception.

(Inherited from Exception)

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetBaseException()

When overridden in a derived class, returns the Exception that is the root cause of one or more subsequent exceptions.

(Inherited from Exception)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetObjectData(SerializationInfo, StreamingContext)
Obsolete.

When overridden in a derived class, sets the SerializationInfo with information about the exception.

(Inherited from Exception)
GetType()

Gets the runtime type of the current instance.

(Inherited from Exception)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Creates and returns a string representation of the current exception.

(Inherited from Exception)

Events

SerializeObjectState
Obsolete.

Occurs when an exception is serialized to create an exception state object that contains serialized data about the exception.

(Inherited from Exception)

Applies to

See also