次の方法で共有


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 参照 (Visual Basic ではNothing)。

注釈

行が削除されたかどうかを判断するには、DataRow クラスの RowState を使用します。

適用対象