NativeActivity<TResult>.CanInduceIdle 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,這個值指出此活動是否會造成工作流程變為閒置。
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; }
}