Activity::Implementation Property

.NET Framework (current version)
 

Gets or sets the delegate that returns an Activity that contains the execution logic.

Namespace:   System.Activities
Assembly:  System.Activities (in System.Activities.dll)

protected:
[XamlDeferLoadAttribute((FuncDeferringLoader^::typeid), (Activity^::typeid))]
[BrowsableAttribute(false)]
[AmbientAttribute]
property Func<Activity^>^ Implementation {
	virtual Func<Activity^>^ get();
	virtual void set(Func<Activity^>^ value);
}

Property Value

Type: System::Func<Activity^>^

The delegate that contains the execution logic.

The execution logic can be implemented as several Activity objects by containing them in a Sequence activity or other composite activity.

.NET Framework
Available since 4.0
Return to top
Show: