RowNotInTableException コンストラクター

定義

引数を指定せずに、RowNotInTableException クラスの新しいインスタンスを初期化します。

オーバーロード

RowNotInTableException()

RowNotInTableException クラスの新しいインスタンスを初期化します。

RowNotInTableException(String)

文字列を指定して、RowNotInTableException クラスの新しいインスタンスを初期化します。

RowNotInTableException(SerializationInfo, StreamingContext)
古い.

シリアル化情報を指定して、RowNotInTableException クラスの新しいインスタンスを初期化します。

RowNotInTableException(String, Exception)

指定したエラー メッセージおよびこの例外の原因となった内部例外への参照を使用して、RowNotInTableException クラスの新しいインスタンスを初期化します。

RowNotInTableException()

ソース:
DataException.cs
ソース:
DataException.cs
ソース:
DataException.cs

RowNotInTableException クラスの新しいインスタンスを初期化します。

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

適用対象

RowNotInTableException(String)

ソース:
DataException.cs
ソース:
DataException.cs
ソース:
DataException.cs

文字列を指定して、RowNotInTableException クラスの新しいインスタンスを初期化します。

public:
 RowNotInTableException(System::String ^ s);
public RowNotInTableException (string? s);
public RowNotInTableException (string s);
new System.Data.RowNotInTableException : string -> System.Data.RowNotInTableException
Public Sub New (s As String)

パラメーター

s
String

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

適用対象

RowNotInTableException(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.

シリアル化情報を指定して、RowNotInTableException クラスの新しいインスタンスを初期化します。

protected:
 RowNotInTableException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected RowNotInTableException (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 RowNotInTableException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Data.RowNotInTableException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.RowNotInTableException
[<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.RowNotInTableException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Data.RowNotInTableException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

パラメーター

info
SerializationInfo

オブジェクトのシリアル化または逆シリアル化に必要なデータ。

context
StreamingContext

指定したシリアル化ストリームの転送元と転送先の説明。

属性

こちらもご覧ください

適用対象

RowNotInTableException(String, Exception)

ソース:
DataException.cs
ソース:
DataException.cs
ソース:
DataException.cs

指定したエラー メッセージおよびこの例外の原因となった内部例外への参照を使用して、RowNotInTableException クラスの新しいインスタンスを初期化します。

public:
 RowNotInTableException(System::String ^ message, Exception ^ innerException);
public RowNotInTableException (string? message, Exception? innerException);
public RowNotInTableException (string message, Exception innerException);
new System.Data.RowNotInTableException : string * Exception -> System.Data.RowNotInTableException
Public Sub New (message As String, innerException As Exception)

パラメーター

message
String

例外の原因を説明するエラー メッセージ。

innerException
Exception

現在の例外の原因である例外。内部例外が指定されていない場合は null 参照 (Visual Basic では、Nothing)。

適用対象