Confirm.Target 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 the InArgument<T> that contains the CompensationToken for this Confirm activity.
public:
property System::Activities::InArgument<System::Activities::Statements::CompensationToken ^> ^ Target { System::Activities::InArgument<System::Activities::Statements::CompensationToken ^> ^ get(); void set(System::Activities::InArgument<System::Activities::Statements::CompensationToken ^> ^ value); };
public System.Activities.InArgument<System.Activities.Statements.CompensationToken> Target { get; set; }
member this.Target : System.Activities.InArgument<System.Activities.Statements.CompensationToken> with get, set
Public Property Target As InArgument(Of CompensationToken)
Property Value
The InArgument<T> that contains the CompensationToken for this Confirm activity.
Remarks
When the Target of the CompensationToken is specified, the Confirm activity explicitly invokes the confirmation handler of the CompensableActivity, which returns the CompensationToken. When the Target of the CompensationToken is not specified, the Confirm activity executes the default confirmation for any child CompensableActivity activities in the reverse order of successful completion. An InvalidOperationException is thrown if the Target refers to a CompensableActivity that was previously confirmed or compensated.
This property is read-only at runtime. If the value is set at runtime, an InvalidOperationException is raised.