共用方式為


DeletedRowInaccessibleException 建構函式

定義

初始化 DeletedRowInaccessibleException 類別的新實例。

多載

DeletedRowInaccessibleException()

初始化 DeletedRowInaccessibleException 類別的新實例。

DeletedRowInaccessibleException(String)

使用指定的字串,初始化 DeletedRowInaccessibleException 類別的新實例。

DeletedRowInaccessibleException(SerializationInfo, StreamingContext)
已淘汰.

使用串行化資訊,初始化 DeletedRowInaccessibleException 類別的新實例。

DeletedRowInaccessibleException(String, Exception)

使用指定的錯誤訊息和造成這個例外狀況的內部例外狀況參考,初始化 DeletedRowInaccessibleException 類別的新實例。

DeletedRowInaccessibleException()

來源:
DataException.cs
來源:
DataException.cs
來源:
DataException.cs

初始化 DeletedRowInaccessibleException 類別的新實例。

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

備註

使用 DataRow 類別的 RowState 來判斷數據列是否已刪除。

另請參閱

適用於

DeletedRowInaccessibleException(String)

來源:
DataException.cs
來源:
DataException.cs
來源:
DataException.cs

使用指定的字串,初始化 DeletedRowInaccessibleException 類別的新實例。

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)

參數

s
String

擲回例外狀況時要顯示的字串。

備註

使用 DataRow 類別的 RowState 來判斷數據列是否已刪除。

另請參閱

適用於

DeletedRowInaccessibleException(SerializationInfo, StreamingContext)

來源:
DataException.cs
來源:
DataException.cs
來源:
DataException.cs

警告

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

使用串行化資訊,初始化 DeletedRowInaccessibleException 類別的新實例。

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)

參數

info
SerializationInfo

串行化或還原串行化物件所需的數據。

context
StreamingContext

指定串行化數據流的來源和目的地描述。

屬性

另請參閱

適用於

DeletedRowInaccessibleException(String, Exception)

來源:
DataException.cs
來源:
DataException.cs
來源:
DataException.cs

使用指定的錯誤訊息和造成這個例外狀況的內部例外狀況參考,初始化 DeletedRowInaccessibleException 類別的新實例。

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)

參數

message
String

說明例外狀況原因的錯誤訊息。

innerException
Exception

如果未指定任何內部例外狀況,則為目前例外狀況的例外狀況,或 Null 參考 (Nothing 在 Visual Basic 中為 。

備註

使用 DataRow 類別的 RowState 來判斷數據列是否已刪除。

適用於