言語

PersistenceException コンストラクター

定義

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

オーバーロード

名前 説明
PersistenceException()

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

PersistenceException(String)

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

PersistenceException(SerializationInfo, StreamingContext)

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

PersistenceException(String, Exception)

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

PersistenceException()

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

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

適用対象

PersistenceException(String)

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

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

パラメーター

message
String

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

適用対象

PersistenceException(SerializationInfo, StreamingContext)

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

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

パラメーター

info
SerializationInfo

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

context
StreamingContext

ソースまたは宛先に関するコンテキスト情報を含む StreamingContext

適用対象

PersistenceException(String, Exception)

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

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

パラメーター

message
String

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

innerException
Exception

Exceptionの原因となったPersistenceException

適用対象