DeletedRowInaccessibleException Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the DeletedRowInaccessibleException class.
Overloads
DeletedRowInaccessibleException() |
Initializes a new instance of the DeletedRowInaccessibleException class. |
DeletedRowInaccessibleException(String) |
Initializes a new instance of the DeletedRowInaccessibleException class with the specified string. |
DeletedRowInaccessibleException(SerializationInfo, StreamingContext) |
Obsolete.
Initializes a new instance of the DeletedRowInaccessibleException class with serialization information. |
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. |
DeletedRowInaccessibleException()
- Source:
- DataException.cs
- Source:
- DataException.cs
- Source:
- DataException.cs
Initializes a new instance of the DeletedRowInaccessibleException class.
public:
DeletedRowInaccessibleException();
public DeletedRowInaccessibleException ();
Public Sub New ()
Remarks
Use the RowState of a DataRow class to determine whether a row has been deleted.
See also
Applies to
DeletedRowInaccessibleException(String)
- Source:
- DataException.cs
- Source:
- DataException.cs
- Source:
- DataException.cs
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)
Parameters
- s
- String
The string to display when the exception is thrown.
Remarks
Use the RowState of a DataRow class to determine whether a row has been deleted.
See also
Applies to
DeletedRowInaccessibleException(SerializationInfo, StreamingContext)
- Source:
- DataException.cs
- Source:
- DataException.cs
- Source:
- DataException.cs
Caution
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
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);
[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);
new System.Data.DeletedRowInaccessibleException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.DeletedRowInaccessibleException
[<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
Protected Sub New (info As SerializationInfo, context As StreamingContext)
Parameters
- info
- SerializationInfo
The data that is required to serialize or deserialize an object.
- context
- StreamingContext
Description of the source and destination of the specified serialized stream.
- Attributes
See also
Applies to
DeletedRowInaccessibleException(String, Exception)
- Source:
- DataException.cs
- Source:
- DataException.cs
- Source:
- DataException.cs
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)
Parameters
- message
- String
The error message that explains the reason for the exception.
- innerException
- Exception
The exception that is the cause of the current exception, or a null reference (Nothing
in Visual Basic) if no inner exception is specified.
Remarks
Use the RowState of a DataRow class to determine whether a row has been deleted.