Activity.Baggage プロパティ

定義

この Activity の子に渡される情報を表すキーと値のペアのコレクションを取得します。

public:
 property System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<System::String ^, System::String ^>> ^ Baggage { System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<System::String ^, System::String ^>> ^ get(); };
public System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,string?>> Baggage { get; }
public System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,string>> Baggage { get; }
member this.Baggage : seq<System.Collections.Generic.KeyValuePair<string, string>>
Public ReadOnly Property Baggage As IEnumerable(Of KeyValuePair(Of String, String))

プロパティ値

IEnumerable<KeyValuePair<String,String>>

この Activity子に渡される情報。

注釈

Baggage は、要求が (ID と共に) プロセスを終了したときにシリアル化されます。 通常、 Baggage アクティビティとすべての子のログ記録をきめ細かく制御するために使用されます。 一般に、実行時にデータを使用していない場合は、代わりに使用 Tags する必要があります。

適用対象