TaskContentAdorner.CreatePostExecutionTasks Method (FormPropertyBag)
Returns a list of tasks that will be combined to the existing form.
Namespace: Microsoft.WindowsServerSolutions.Administration.ObjectModel.Adorners
Assembly: Microsoft.WindowsServerSolutions.Administration.ObjectModel (in Microsoft.WindowsServerSolutions.Administration.ObjectModel.dll)
Syntax
public abstract ICollection<Task> CreatePostExecutionTasks(
FormPropertyBag propertyBag
)
public:
virtual ICollection<Task^>^ CreatePostExecutionTasks(
FormPropertyBag^ propertyBag
) abstract
Public MustOverride Function CreatePostExecutionTasks (
propertyBag As FormPropertyBag
) As ICollection(Of Task)
Parameters
propertyBag
Type: Microsoft.WindowsServerSolutions.Administration.ObjectModel.Adorners.FormPropertyBagThe property bag used by each adorner to retrieve form data.
Return Value
Type: System.Collections.Generic.ICollection<Task>
A ICollection<T> containing one or more System.Threading.Tasks.Task objects.
Remarks
These pre execution tasks will be run after the built-in tasks in a non-UI thread.
See Also
TaskContentAdorner Class
Microsoft.WindowsServerSolutions.Administration.ObjectModel.Adorners Namespace
Return to top