Activity.Baggage Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
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.