Activity.Baggage Propriedade

Definição

Obtém uma coleção de pares chave/valor que representa as informações que são passadas para os filhos deste 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))

Valor da propriedade

Informações passadas para filhos deste Activity.

Comentários

Baggage é serializado quando as solicitações deixam o processo (juntamente com a ID). Normalmente, Baggage é usado para controle refinado sobre o registro em log da atividade e todos os filhos. Em geral, se você não estiver usando os dados em runtime, deverá usar Tags em vez disso.

Aplica-se a