Activity.Baggage Propiedad

Definición

Obtiene una colección de pares clave-valor que representa la información que se pasa a los elementos secundarios de este Activityobjeto .

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 de propiedad

Información que se pasa a los elementos secundarios de este Activity.

Comentarios

Baggage se serializa cuando las solicitudes dejan el proceso (junto con el identificador). Normalmente, Baggage se usa para un control específico sobre el registro de la actividad y los elementos secundarios. En general, si no usa los datos en tiempo de ejecución, debe usar Tags en su lugar.

Se aplica a