InstancePersistenceException コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
InstancePersistenceException クラスのインスタンスを初期化します。
オーバーロード
InstancePersistenceException() |
InstancePersistenceException クラスのインスタンスを初期化します。 |
InstancePersistenceException(String) |
エラー メッセージを使用して、InstancePersistenceException クラスのインスタンスを初期化します。 |
InstancePersistenceException(XName) |
コマンドの名前を使用して、InstancePersistenceException クラスのインスタンスを初期化します。 |
InstancePersistenceException(SerializationInfo, StreamingContext) |
シリアル化情報とコンテキスト情報を使用して、InstancePersistenceException クラスのインスタンスを初期化します。 |
InstancePersistenceException(String, Exception) |
エラー メッセージと内部例外情報を使用して、InstancePersistenceException クラスのインスタンスを初期化します。 |
InstancePersistenceException(XName, Exception) |
コマンドの名前と内部例外情報を使用して、InstancePersistenceException クラスのインスタンスを初期化します。 |
InstancePersistenceException(XName, String) |
コマンドの名前とエラー メッセージを使用して、InstancePersistenceException クラスのインスタンスを初期化します。 |
InstancePersistenceException(XName, String, Exception) |
コマンドの名前、エラー メッセージ、および内部例外情報を使用して、InstancePersistenceException クラスのインスタンスを初期化します。 |
InstancePersistenceException()
InstancePersistenceException クラスのインスタンスを初期化します。
public:
InstancePersistenceException();
public InstancePersistenceException ();
Public Sub New ()
適用対象
InstancePersistenceException(String)
エラー メッセージを使用して、InstancePersistenceException クラスのインスタンスを初期化します。
public:
InstancePersistenceException(System::String ^ message);
public InstancePersistenceException (string message);
new System.Runtime.DurableInstancing.InstancePersistenceException : string -> System.Runtime.DurableInstancing.InstancePersistenceException
Public Sub New (message As String)
パラメーター
- message
- String
現在の例外を説明するエラー メッセージ。
適用対象
InstancePersistenceException(XName)
コマンドの名前を使用して、InstancePersistenceException クラスのインスタンスを初期化します。
public:
InstancePersistenceException(System::Xml::Linq::XName ^ commandName);
public InstancePersistenceException (System.Xml.Linq.XName commandName);
new System.Runtime.DurableInstancing.InstancePersistenceException : System.Xml.Linq.XName -> System.Runtime.DurableInstancing.InstancePersistenceException
Public Sub New (commandName As XName)
パラメーター
- commandName
- XName
コマンドの XName (名前空間と名前の組み合わせ) です。
適用対象
InstancePersistenceException(SerializationInfo, StreamingContext)
シリアル化情報とコンテキスト情報を使用して、InstancePersistenceException クラスのインスタンスを初期化します。
protected:
InstancePersistenceException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
[System.Security.SecurityCritical]
protected InstancePersistenceException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
[<System.Security.SecurityCritical>]
new System.Runtime.DurableInstancing.InstancePersistenceException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Runtime.DurableInstancing.InstancePersistenceException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
パラメーター
- info
- SerializationInfo
現在の例外情報。
- context
- StreamingContext
転送元または転送先に関するコンテキスト情報。
- 属性
適用対象
InstancePersistenceException(String, Exception)
エラー メッセージと内部例外情報を使用して、InstancePersistenceException クラスのインスタンスを初期化します。
public:
InstancePersistenceException(System::String ^ message, Exception ^ innerException);
public InstancePersistenceException (string message, Exception innerException);
new System.Runtime.DurableInstancing.InstancePersistenceException : string * Exception -> System.Runtime.DurableInstancing.InstancePersistenceException
Public Sub New (message As String, innerException As Exception)
パラメーター
- message
- String
現在の例外の理由。
- innerException
- Exception
現在の例外の発生原因である例外。
適用対象
InstancePersistenceException(XName, Exception)
コマンドの名前と内部例外情報を使用して、InstancePersistenceException クラスのインスタンスを初期化します。
public:
InstancePersistenceException(System::Xml::Linq::XName ^ commandName, Exception ^ innerException);
public InstancePersistenceException (System.Xml.Linq.XName commandName, Exception innerException);
new System.Runtime.DurableInstancing.InstancePersistenceException : System.Xml.Linq.XName * Exception -> System.Runtime.DurableInstancing.InstancePersistenceException
Public Sub New (commandName As XName, innerException As Exception)
パラメーター
- commandName
- XName
コマンドの XName (名前空間と名前の組み合わせ) です。
- innerException
- Exception
現在の例外を引き起こした例外。
適用対象
InstancePersistenceException(XName, String)
コマンドの名前とエラー メッセージを使用して、InstancePersistenceException クラスのインスタンスを初期化します。
public:
InstancePersistenceException(System::Xml::Linq::XName ^ commandName, System::String ^ message);
public InstancePersistenceException (System.Xml.Linq.XName commandName, string message);
new System.Runtime.DurableInstancing.InstancePersistenceException : System.Xml.Linq.XName * string -> System.Runtime.DurableInstancing.InstancePersistenceException
Public Sub New (commandName As XName, message As String)
パラメーター
- commandName
- XName
コマンドの XName (名前空間と名前の組み合わせ) です。
- message
- String
例外を説明するエラー メッセージ。
適用対象
InstancePersistenceException(XName, String, Exception)
コマンドの名前、エラー メッセージ、および内部例外情報を使用して、InstancePersistenceException クラスのインスタンスを初期化します。
public:
InstancePersistenceException(System::Xml::Linq::XName ^ commandName, System::String ^ message, Exception ^ innerException);
public InstancePersistenceException (System.Xml.Linq.XName commandName, string message, Exception innerException);
new System.Runtime.DurableInstancing.InstancePersistenceException : System.Xml.Linq.XName * string * Exception -> System.Runtime.DurableInstancing.InstancePersistenceException
Public Sub New (commandName As XName, message As String, innerException As Exception)
パラメーター
- commandName
- XName
コマンドの XName (名前空間と名前の組み合わせ) です。
- message
- String
例外を説明するエラー メッセージ。
- innerException
- Exception
現在の例外を引き起こした例外。
適用対象
.NET