TrackingDataItemValue.FieldName 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置从中提取数据的活动成员的名称。
public:
property System::String ^ FieldName { System::String ^ get(); void set(System::String ^ value); };
public string FieldName { get; set; }
member this.FieldName : string with get, set
Public Property FieldName As String
属性值
从中提取数据的活动成员的名称。 默认为空引用(在 Visual Basic 中为 Nothing
)。
示例
下面的示例演示如何设置 FieldName 属性。 此示例摘自工作流监视器 SDK 示例。 有关详细信息,请参阅 工作流监视器示例。
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()
注解
FieldName 对应于 TrackingDataItem.FieldName 中指定的名称。 因此,可以设置 FieldName 以指定活动字段或属性;活动字段或属性的成员;或指定实现 IEnumerable 接口的活动字段或属性(或其中任何一个的成员)的单一元素。 有关更多信息,请参见 TrackingDataItem.FieldName、TrackingExtract.Member、ActivityDataTrackingExtract.Member 或 WorkflowDataTrackingExtract.Member。