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 ()

注釈

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

こちらもご覧ください

適用対象

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

例外がスローされたときに表示する文字列。

注釈

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

こちらもご覧ください

適用対象

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)。

注釈

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

適用対象