次の方法で共有


InstanceNotFoundException コンストラクター

定義

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

オーバーロード

InstanceNotFoundException()

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

InstanceNotFoundException(Guid)

指定した識別子を使用して、InstanceNotFoundException クラスの新しいインスタンスを初期化します。

InstanceNotFoundException(String)

指定されたメッセージを使用して、InstanceNotFoundException クラスの新しいインスタンスを初期化します。

InstanceNotFoundException(Guid, Exception)

指定した識別子と内部例外を使用して、InstanceNotFoundException クラスの新しいインスタンスを初期化します。

InstanceNotFoundException(Guid, String)

指定した識別子とメッセージを使用して、InstanceNotFoundException クラスの新しいインスタンスを初期化します。

InstanceNotFoundException(SerializationInfo, StreamingContext)

シリアル化したデータを使用して、InstanceNotFoundException クラスの新しいインスタンスを初期化します。

InstanceNotFoundException(String, Exception)

指定したメッセージと内部例外を使用して、InstanceNotFoundException クラスの新しいインスタンスを初期化します。

InstanceNotFoundException(Guid, String, Exception)

指定した ID、メッセージ、および内部例外を使用して、InstanceNotFoundException クラスの新しいインスタンスを初期化します。

InstanceNotFoundException()

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

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

適用対象

InstanceNotFoundException(Guid)

指定した識別子を使用して、InstanceNotFoundException クラスの新しいインスタンスを初期化します。

public:
 InstanceNotFoundException(Guid id);
public InstanceNotFoundException (Guid id);
new System.ServiceModel.Persistence.InstanceNotFoundException : Guid -> System.ServiceModel.Persistence.InstanceNotFoundException
Public Sub New (id As Guid)

パラメーター

id
Guid

このインスタンスに関連付けられた一意の識別子。

適用対象

InstanceNotFoundException(String)

指定されたメッセージを使用して、InstanceNotFoundException クラスの新しいインスタンスを初期化します。

public:
 InstanceNotFoundException(System::String ^ message);
public InstanceNotFoundException (string message);
new System.ServiceModel.Persistence.InstanceNotFoundException : string -> System.ServiceModel.Persistence.InstanceNotFoundException
Public Sub New (message As String)

パラメーター

message
String

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

適用対象

InstanceNotFoundException(Guid, Exception)

指定した識別子と内部例外を使用して、InstanceNotFoundException クラスの新しいインスタンスを初期化します。

public:
 InstanceNotFoundException(Guid id, Exception ^ innerException);
public InstanceNotFoundException (Guid id, Exception innerException);
new System.ServiceModel.Persistence.InstanceNotFoundException : Guid * Exception -> System.ServiceModel.Persistence.InstanceNotFoundException
Public Sub New (id As Guid, innerException As Exception)

パラメーター

id
Guid

このインスタンスに関連付けられた一意の識別子。

innerException
Exception

Exception の原因となった InstanceNotFoundException

適用対象

InstanceNotFoundException(Guid, String)

指定した識別子とメッセージを使用して、InstanceNotFoundException クラスの新しいインスタンスを初期化します。

public:
 InstanceNotFoundException(Guid id, System::String ^ message);
public InstanceNotFoundException (Guid id, string message);
new System.ServiceModel.Persistence.InstanceNotFoundException : Guid * string -> System.ServiceModel.Persistence.InstanceNotFoundException
Public Sub New (id As Guid, message As String)

パラメーター

id
Guid

このインスタンスに関連付けられた一意の識別子。

message
String

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

適用対象

InstanceNotFoundException(SerializationInfo, StreamingContext)

シリアル化したデータを使用して、InstanceNotFoundException クラスの新しいインスタンスを初期化します。

protected:
 InstanceNotFoundException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected InstanceNotFoundException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.ServiceModel.Persistence.InstanceNotFoundException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.ServiceModel.Persistence.InstanceNotFoundException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

パラメーター

info
SerializationInfo

スローされている例外に関するシリアル化済みオブジェクト データを保持している SerializationInfo

context
StreamingContext

転送元または転送先についてのコンテキスト情報を含む StreamingContext です。

適用対象

InstanceNotFoundException(String, Exception)

指定したメッセージと内部例外を使用して、InstanceNotFoundException クラスの新しいインスタンスを初期化します。

public:
 InstanceNotFoundException(System::String ^ message, Exception ^ innerException);
public InstanceNotFoundException (string message, Exception innerException);
new System.ServiceModel.Persistence.InstanceNotFoundException : string * Exception -> System.ServiceModel.Persistence.InstanceNotFoundException
Public Sub New (message As String, innerException As Exception)

パラメーター

message
String

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

innerException
Exception

Exception の原因となった InstanceNotFoundException

適用対象

InstanceNotFoundException(Guid, String, Exception)

指定した ID、メッセージ、および内部例外を使用して、InstanceNotFoundException クラスの新しいインスタンスを初期化します。

public:
 InstanceNotFoundException(Guid id, System::String ^ message, Exception ^ innerException);
public InstanceNotFoundException (Guid id, string message, Exception innerException);
new System.ServiceModel.Persistence.InstanceNotFoundException : Guid * string * Exception -> System.ServiceModel.Persistence.InstanceNotFoundException
Public Sub New (id As Guid, message As String, innerException As Exception)

パラメーター

id
Guid

このインスタンスに関連付けられた一意の識別子。

message
String

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

innerException
Exception

Exception の原因となった InstanceNotFoundException

適用対象