WebServiceInputActivity.IsActivating 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 or sets a value that indicates whether receiving data should start the workflow.
public:
property bool IsActivating { bool get(); void set(bool value); };
public bool IsActivating { get; set; }
member this.IsActivating : bool with get, set
Public Property IsActivating As Boolean
Property Value
true
if receiving data should start the workflow; otherwise, false
.
Remarks
Only the first receive in a workflow can have the IsActivating property set to true
. If more than one IsActivating is set to true
, the session is locked on the first request. This lasts as long as the other receive blocks the workflow; the session is deadlocked.