ActivityTrackingCondition.Value Property

Definition

The value that is to be compared with Member.

C#
public override string Value { get; set; }

Property Value

The value used in the comparison.

Examples

The following code sample demonstrates accessing the Value property. This example is from the Tracking Profile Designer SDK sample. For more information, see Tracking Profile Designer Sample.

C#
/// <summary>
/// Saves a tracking condition for an activity
/// </summary>
/// <param name="activity"></param>
/// <param name="key"></param>
/// <param name="member"></param>
/// <param name="op"></param>
/// <param name="value"></param>
internal void SaveTrackingCondition(Activity activity, ref ActivityTrackingCondition key, string member, ComparisonOperator op, string value)
{
    ActivityTrackPoint trackPoint = GetTrackPointForActivity(activity);
    if (trackPoint != null)
    {
        if (key == null)
        {
            key = new ActivityTrackingCondition();
            trackPoint.MatchingLocations[0].Conditions.Add(key);
        }
        key.Member = member;
        key.Value = value;
        key.Operator = op;
    }
}

Remarks

Value is compared to the value of

Member by applying Operator.

If you use the parameterless constructor for ActivityTrackingCondition, you must explicitly set Value.

Applies to

Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1