Condividi tramite


TrackingDataItemValue.DataValue Proprietà

Definizione

Ottiene o imposta una rappresentazione string del valore dei dati estratti.

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

Valore della proprietà

Rappresentazione string del valore dei dati estratti. Il valore predefinito è un riferimento null (Nothing in Visual Basic).

Esempio

Nell'esempio seguente viene illustrata l'impostazione della proprietà DataValue. Questo esempio è tratto dall'esempio SDK Workflow Monitor. Per altre informazioni, vedere Esempio di monitoraggio del flusso di lavoro.

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()

Commenti

La proprietà DataValue può essere un riferimento null (Nothing).

Si applica a