NativeActivity<TResult>.CanInduceIdle 属性

定义

获取或设置一个值,该值指示活动是否会使工作流进入空闲状态。

protected:
 virtual property bool CanInduceIdle { bool get(); };
protected virtual bool CanInduceIdle { get; }
member this.CanInduceIdle : bool
Protected Overridable ReadOnly Property CanInduceIdle As Boolean

属性值

当活动使工作流进入空闲状态时,则为 true,否则为false。 默认情况下,此值为 false

示例

下面的代码示例演示如何在一个从 NativeActivity<TResult> 继承的类中使用 CanInduceIdle。

// indicate to the runtime that this activity can go idle
protected override bool CanInduceIdle
{
    get { return true; }
}

适用于