Universal Windows Service Class Library

ApplicationList.Add Method 

Add a new application object to list.

public void Add(
   Application application
);

Parameters

application
Object of the application class which should be added.

Remarks

This function checks if the given application exists already in list. If not the working thread for this application will be started using the thread function ThreadRun. After that it will be entered in application list.

Exceptions

Exception TypeCondition
ArgumentNullExceptionThrown if no application was given.
ArgumentExceptionGiven application has no valid name.

See Also

ApplicationList Class | uws Namespace | Application