Activity.Baggage Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
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.