CorrelationProperty クラス

定義

注意事項

The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*

メッセージを特定の受信アクティビティに関連付けるために使用される名前と値のペアを表します。

public ref class CorrelationProperty
[System.Serializable]
public class CorrelationProperty
[System.Serializable]
[System.Obsolete("The System.Workflow.* types are deprecated.  Instead, please use the new types from System.Activities.*")]
public class CorrelationProperty
[<System.Serializable>]
type CorrelationProperty = class
[<System.Serializable>]
[<System.Obsolete("The System.Workflow.* types are deprecated.  Instead, please use the new types from System.Activities.*")>]
type CorrelationProperty = class
Public Class CorrelationProperty
継承
CorrelationProperty
属性

次の例は、関連付けプロパティ オブジェクトを作成する方法と、Name および Value プロパティにアクセスする方法を示しています。

// Create a new Correlation Property object
CorrelationProperty correlationProperty = new CorrelationProperty("taskName", "reportBalance");
// Read the property name
string taskName = correlationProperty.Name;
// Read the property value
Object taskValue = correlationProperty.Value;
' Create a new Correlation Property object
Dim correlationProperty As New CorrelationProperty("taskName", "reportBalance")
' Read the property name
Dim taskName As String = correlationProperty.Name
' Read the property value
Dim taskValue As Object = correlationProperty.Value

注釈

注意

ここでは、廃止された型と名前空間について説明します。 詳細については、「.NET 4.5 での Windows Workflow Foundation の新機能」を参照してください。

CorrelationProperty クラスは、ワークフロー接続サービス アクティビティの ActivityBind プロパティと定義されます。 既定では、これらのプロパティはルート ワークフロー アクティビティで宣言される変数にバインドされます。 ReplicatorActivityConditionedActivityGroup などの動的アクティビティの場合、その各子が CorrelationProperty 汎用オブジェクトを共有することはできません。 ReplicatorActivity 内の各タスクが自身のメッセージ交換を管理する必要があるシナリオを考えてみます。 ReplicatorActivity 内の子アクティビティは、実行コンテキストまたはタスクごとに一意の CorrelationProperty インスタンスを必要とします。 これを実現するためには、CorrelationProperty インスタンス プロパティを持つカスタム アクティビティを定義する必要があり、ワークフロー接続サービス アクティビティはこのプロパティにバインドする必要があります。

コンストラクター

CorrelationProperty(String, Object)

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

プロパティ

Name

関連付けセットで使用されているプロパティの名前を取得します。

Value

関連付けセットのプロパティの値を取得します。

メソッド

Equals(Object)

指定されたオブジェクトが現在のオブジェクトと等しいかどうかを判断します。

(継承元 Object)
GetHashCode()

既定のハッシュ関数として機能します。

(継承元 Object)
GetType()

現在のインスタンスの Type を取得します。

(継承元 Object)
MemberwiseClone()

現在の Object の簡易コピーを作成します。

(継承元 Object)
ToString()

現在のオブジェクトを表す文字列を返します。

(継承元 Object)

適用対象