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.Gets a collection of key/value pairs that represents information that is passed to children of this 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

IEnumerable<KeyValuePair<String,String>>

Informações que são passadas para crianças Activity .Information that's passed to children of this Activity.

Comentários

Baggage é serializado quando as solicitações saem do processo (juntamente com a ID).Baggage is serialized when requests leave the process (along with the ID). Normalmente, Baggage é usado para um controle refinado do log da atividade e de qualquer filho.Typically, Baggage is used for fine-grained control over logging of the activity and any children. Em geral, se você não estiver usando os dados em tempo de execução, deverá usar o Tags em vez disso.In general, if you are not using the data at runtime, you should be using Tags instead.

Aplica-se a