Share via


TrackingDataItemValue.DataValue Propiedad

Definición

Obtiene o establece una representación de string del valor de los datos extraídos.

public:
 property System::String ^ DataValue { System::String ^ get(); void set(System::String ^ value); };
public string DataValue { get; set; }
member this.DataValue : string with get, set
Public Property DataValue As String

Valor de propiedad

Representación de string del valor de los datos extraídos. El valor predeterminado es una referencia nula (Nothing en Visual Basic).

Ejemplos

En el siguiente ejemplo se muestra cómo establecer la propiedad DataValue. Este ejemplo pertenece al SDK del monitor de flujo de trabajo. Para obtener más información, consulte Ejemplo de monitor de flujo de trabajo.

trackingDataItemValue = new TrackingDataItemValue(string.Empty, string.Empty, string.Empty);
trackingDataItemValue.QualifiedName = this.toolStripTextBoxArtifactQualifiedId.Text.ToString();
trackingDataItemValue.FieldName = this.toolStripTextBoxArtifactKeyName.Text.ToString();
trackingDataItemValue.DataValue = this.toolStripTextBoxArtifactKeyValue.Text.ToString();
TrackingDataItemValue = New TrackingDataItemValue(String.Empty, String.Empty, String.Empty)
TrackingDataItemValue.QualifiedName = Me.toolStripTextBoxArtifactQualifiedId.Text.ToString()
TrackingDataItemValue.FieldName = Me.toolStripTextBoxArtifactKeyName.Text.ToString()
TrackingDataItemValue.DataValue = Me.toolStripTextBoxArtifactKeyValue.Text.ToString()

Comentarios

DataValue puede ser una referencia nula (Nothing).

Se aplica a