ReceiveReply クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
要求/応答メッセージ交換パターンの一部としてメッセージを受信するアクティビティ。
public ref class ReceiveReply sealed : System::Activities::Activity
[System.Windows.Markup.ContentProperty("Content")]
public sealed class ReceiveReply : System.Activities.Activity
[<System.Windows.Markup.ContentProperty("Content")>]
type ReceiveReply = class
inherit Activity
Public NotInheritable Class ReceiveReply
Inherits Activity
- 継承
- 属性
例
ReceiveReply アクティビティを使用する方法の例を次に示します。 Send アクティビティが作成され、Sequence に追加されます。 次に、ReceiveReply アクティビティからの応答を受信するために、Sequence アクティビティが Send に追加されます。
static void CreateClientWorkflow()
{
Variable<string> message = new Variable<string>("message", "Hello!");
Variable<string> result = new Variable<string> { Name = "result" };
Endpoint endpoint = new Endpoint
{
AddressUri = new Uri(Microsoft.Samples.WorkflowServicesSamples.Common.Constants.ServiceBaseAddress), Binding = new BasicHttpBinding(),
};
Send requestEcho = new Send
{
ServiceContractName = XName.Get("Echo", "http://tempuri.org/"),
Endpoint = endpoint,
OperationName = "Echo",
//parameters for send
Content = new SendParametersContent
{
Parameters =
{
{ "message", new InArgument<string>(message) }
}
}
};
workflow = new CorrelationScope
{
Body = new Sequence
{
Variables = { message, result },
Activities =
{
new WriteLine {
Text = new InArgument<string>("Client is ready!")
},
requestEcho,
new WriteLine {
Text = new InArgument<string>("Message sent: Hello!")
},
new ReceiveReply
{
Request = requestEcho,
//parameters for the reply
Content = new ReceiveParametersContent
{
Parameters =
{
{ "echo", new OutArgument<string>(result) }
}
}
},
new WriteLine {
Text = new InArgument<string>(env => "Message received: "+result.Get(env))
}
}
}
};
}
コンストラクター
ReceiveReply() |
ReceiveReply クラスの新しいインスタンスを初期化します。 |
プロパティ
Action |
メッセージのアクション ヘッダーの値を取得または設定します。 |
CacheId |
ワークフロー定義のスコープ内で一意であるキャッシュの識別子を取得します。 (継承元 Activity) |
Constraints |
Constraint に検証を提供するよう構成できる Activity アクティビティのコレクションを取得します。 (継承元 Activity) |
Content |
ReceiveReply アクティビティが受信するコンテンツを取得または設定します。 |
CorrelationInitializers |
関連付け初期化子のコレクションを取得します。 |
DisplayName |
デバッグ、検証、例外処理、および追跡に使用する省略可能な表示名を取得または設定します。 (継承元 Activity) |
Id |
ワークフロー定義のスコープ内で一意である識別子を取得します。 (継承元 Activity) |
Implementation |
実行ロジックを含む Activity を返すデリゲートを取得または設定します。 (継承元 Activity) |
ImplementationVersion |
使用される実装のバージョンを取得または設定します。 (継承元 Activity) |
Request |
この Send アクティビティに対応する ReceiveReply アクティビティへの参照を取得または設定します。 |
メソッド
CacheMetadata(ActivityMetadata) |
アクティビティの引数、変数、子アクティビティ、およびアクティビティ デリゲートの記述を作成および検証します。 (継承元 Activity) |
Equals(Object) |
指定されたオブジェクトが現在のオブジェクトと等しいかどうかを判断します。 (継承元 Object) |
GetHashCode() |
既定のハッシュ関数として機能します。 (継承元 Object) |
GetType() |
現在のインスタンスの Type を取得します。 (継承元 Object) |
MemberwiseClone() |
現在の Object の簡易コピーを作成します。 (継承元 Object) |
OnCreateDynamicUpdateMap(UpdateMapMetadata, Activity) |
動的な更新のマップを作成するとイベントが発生します。 (継承元 Activity) |
ShouldSerializeDisplayName() |
DisplayName プロパティをシリアル化する必要があるかどうかを示します。 (継承元 Activity) |
ToString() |
String の Id および DisplayName を含む Activity を返します。 (継承元 Activity) |
適用対象
.NET