次の方法で共有


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

現在の例外の原因である例外。

適用対象