RuleActionTrackingEvent.ConditionResult 属性
定义
获取条件计算的结果。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
属性值
规则条件的结果:true 或 false。The result of the rule condition: true or false.
示例
下面的代码示例演示如何使用 RuleActionTrackingEvent 类并在执行规则后将 ConditionResult 属性的值打印到控制台。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. 此代码示例摘自 ConsoleTrackingService.cs 文件中的“RuleActionTrackingEventSample”SDK 示例。This code example is part of the RuleActionTrackingEventSample SDK Sample from the ConsoleTrackingService.cs file. 有关详细信息,请参阅 RuleActionTrackingEvent 示例。For more information, see RuleActionTrackingEvent Sample.
this.synchronizationScopeActivity = new System.Workflow.ComponentModel.SynchronizationScopeActivity();
Me.synchronizationScopeActivity = New System.Workflow.ComponentModel.SynchronizationScopeActivity()