RuleActionTrackingEvent.ConditionResult Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the result of the condition evaluation.
public:
property bool ConditionResult { bool get(); };
public bool ConditionResult { get; }
member this.ConditionResult : bool
Public ReadOnly Property ConditionResult As Boolean
Property Value
The result of the rule condition: true
or false
.
Examples
The following code example shows how to use the RuleActionTrackingEvent class and print the value of the ConditionResult property to the console upon execution of the rule. This code example is part of the RuleActionTrackingEventSample SDK Sample from the ConsoleTrackingService.cs file. For more information, see RuleActionTrackingEvent Sample.
this.synchronizationScopeActivity = new System.Workflow.ComponentModel.SynchronizationScopeActivity();
Me.synchronizationScopeActivity = New System.Workflow.ComponentModel.SynchronizationScopeActivity()