VersionMismatchException コンストラクター

定義

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

オーバーロード

VersionMismatchException()

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

VersionMismatchException(String)

メッセージを使用して、VersionMismatchException クラスの新しいインスタンスを初期化します。

VersionMismatchException(WorkflowIdentity, WorkflowIdentity)

必要なバージョンおよび実際のバージョンを使用して、VersionMismatchException クラスの新しいインスタンスを初期化します。

VersionMismatchException(SerializationInfo, StreamingContext)

情報とコンテキストを使用して、VersionMismatchException クラスの新しいインスタンスを初期化します。

VersionMismatchException(String, Exception)

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

VersionMismatchException(String, WorkflowIdentity, WorkflowIdentity)

メッセージ、必要なバージョン、および実際のバージョンを使用して、VersionMismatchException クラスの新しいインスタンスを初期化します。

VersionMismatchException(String, WorkflowIdentity, WorkflowIdentity, Exception)

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

VersionMismatchException()

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

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

適用対象

VersionMismatchException(String)

メッセージを使用して、VersionMismatchException クラスの新しいインスタンスを初期化します。

public:
 VersionMismatchException(System::String ^ message);
public VersionMismatchException (string message);
new System.Activities.VersionMismatchException : string -> System.Activities.VersionMismatchException
Public Sub New (message As String)

パラメーター

message
String

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

適用対象

VersionMismatchException(WorkflowIdentity, WorkflowIdentity)

必要なバージョンおよび実際のバージョンを使用して、VersionMismatchException クラスの新しいインスタンスを初期化します。

public:
 VersionMismatchException(System::Activities::WorkflowIdentity ^ expectedVersion, System::Activities::WorkflowIdentity ^ actualVersion);
public VersionMismatchException (System.Activities.WorkflowIdentity expectedVersion, System.Activities.WorkflowIdentity actualVersion);
new System.Activities.VersionMismatchException : System.Activities.WorkflowIdentity * System.Activities.WorkflowIdentity -> System.Activities.VersionMismatchException
Public Sub New (expectedVersion As WorkflowIdentity, actualVersion As WorkflowIdentity)

パラメーター

expectedVersion
WorkflowIdentity

予期されるバージョン。

actualVersion
WorkflowIdentity

ファイルから実際のバージョン。

適用対象

VersionMismatchException(SerializationInfo, StreamingContext)

情報とコンテキストを使用して、VersionMismatchException クラスの新しいインスタンスを初期化します。

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

パラメーター

info
SerializationInfo

スローされた例外についての、シリアル化されたオブジェクトのデータを保持する SerializationInfo です。

context
StreamingContext

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

適用対象

VersionMismatchException(String, Exception)

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

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

パラメーター

message
String

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

innerException
Exception

現在の例外の原因となった例外。

適用対象

VersionMismatchException(String, WorkflowIdentity, WorkflowIdentity)

メッセージ、必要なバージョン、および実際のバージョンを使用して、VersionMismatchException クラスの新しいインスタンスを初期化します。

public:
 VersionMismatchException(System::String ^ message, System::Activities::WorkflowIdentity ^ expectedVersion, System::Activities::WorkflowIdentity ^ actualVersion);
public VersionMismatchException (string message, System.Activities.WorkflowIdentity expectedVersion, System.Activities.WorkflowIdentity actualVersion);
new System.Activities.VersionMismatchException : string * System.Activities.WorkflowIdentity * System.Activities.WorkflowIdentity -> System.Activities.VersionMismatchException
Public Sub New (message As String, expectedVersion As WorkflowIdentity, actualVersion As WorkflowIdentity)

パラメーター

message
String

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

expectedVersion
WorkflowIdentity

予期されるバージョン。

actualVersion
WorkflowIdentity

ファイルから実際のバージョン。

適用対象

VersionMismatchException(String, WorkflowIdentity, WorkflowIdentity, Exception)

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

public:
 VersionMismatchException(System::String ^ message, System::Activities::WorkflowIdentity ^ expectedVersion, System::Activities::WorkflowIdentity ^ actualVersion, Exception ^ innerException);
public VersionMismatchException (string message, System.Activities.WorkflowIdentity expectedVersion, System.Activities.WorkflowIdentity actualVersion, Exception innerException);
new System.Activities.VersionMismatchException : string * System.Activities.WorkflowIdentity * System.Activities.WorkflowIdentity * Exception -> System.Activities.VersionMismatchException
Public Sub New (message As String, expectedVersion As WorkflowIdentity, actualVersion As WorkflowIdentity, innerException As Exception)

パラメーター

message
String

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

expectedVersion
WorkflowIdentity

予期されるバージョン。

actualVersion
WorkflowIdentity

ファイルから実際のバージョン。

innerException
Exception

現在の例外の原因となった例外。

適用対象