Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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> CreatePreExecutionTasks(
    FormPropertyBag propertyBag
)
public:
virtual ICollection<Task^>^ CreatePreExecutionTasks(
    FormPropertyBag^ propertyBag
) abstract
Public MustOverride Function CreatePreExecutionTasks (
    propertyBag As FormPropertyBag
) As ICollection(Of Task)
Parameters
- propertyBag 
 Type: Microsoft.WindowsServerSolutions.Administration.ObjectModel.Adorners.FormPropertyBag- The 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 before the built-in tasks in a non-UI thread.
See Also
TaskContentAdorner Class
Microsoft.WindowsServerSolutions.Administration.ObjectModel.Adorners Namespace
Return to top