ActivityTrackingRecord.Body Propriedade
Definição
Obtém uma lista que contém os dados extraídos do fluxo de trabalho para o ActivityTrackPoint correspondido.Gets a list that contains any data extracted from the workflow for the ActivityTrackPoint that was matched.
public:
property System::Collections::Generic::IList<System::Workflow::Runtime::Tracking::TrackingDataItem ^> ^ Body { System::Collections::Generic::IList<System::Workflow::Runtime::Tracking::TrackingDataItem ^> ^ get(); };
public System.Collections.Generic.IList<System.Workflow.Runtime.Tracking.TrackingDataItem> Body { get; }
member this.Body : System.Collections.Generic.IList<System.Workflow.Runtime.Tracking.TrackingDataItem>
Public ReadOnly Property Body As IList(Of TrackingDataItem)
Valor da propriedade
Uma lista de TrackingDataItem objetos que contém uma única parte dos dados extraídos e suas anotações associadas.A list of TrackingDataItem objects each of which contains a single piece of extracted data and its associated annotations.
Comentários
Quando um ActivityTrackPoint é correspondido, a infraestrutura de rastreamento de tempo de execução pode extrair dados da instância de fluxo de trabalho.When an ActivityTrackPoint is matched, the runtime tracking infrastructure can extract data from the workflow instance. Os dados a serem extraídos são especificados por ActivityTrackPoint.Extracts .The data to be extracted is specified by ActivityTrackPoint.Extracts. ActivityTrackPoint.Extracts pode conter dois tipos de objetos: ActivityDataTrackingExtract os objetos especificam os dados do membro a serem extraídos da atividade associada ao evento de status da atividade; e WorkflowDataTrackingExtract os objetos especificam os dados do membro a serem extraídos da atividade raiz do fluxo de trabalho.ActivityTrackPoint.Extracts can contain two kinds of objects: ActivityDataTrackingExtract objects specify member data to be extracted from the activity associated with the activity status event; and, WorkflowDataTrackingExtract objects specify member data to be extracted from the root activity of the workflow. Ambos os tipos de extração também podem especificar anotações a serem retornadas com os dados extraídos.Both of these extract types can also specify annotations to be returned with the extracted data. A infraestrutura de acompanhamento de tempo de execução encapsula cada parte dos dados extraídos e suas anotações associadas em um TrackingDataItem e adiciona isso TrackingDataItem a Body .The runtime tracking infrastructure encapsulates each piece of extracted data and its associated annotations in a TrackingDataItem, and adds this TrackingDataItem to Body.
Essa propriedade é definida pela infraestrutura de rastreamento de tempo de execução.This property is set by the runtime tracking infrastructure.