Repository.Task.GetScheduledTask: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
(Created page with '{{Template:APIClass|Repository Class|Repository}} {{Template:Repository.GetScheduled.Cmt}} ==Syntax== *GetScheduledTask({{APIPrefix|As}}cScheduledTask) …')
 
(No difference)

Revision as of 22:49, 21 May 2015


Version 10 Only - Returns scheduled task with the provided ID. Returns nothing if the task doesn't exist.

Syntax

Usage Example

 'Declare a new repository connection object. 
 Dim MyRepository As New Repository
 
 'Connect to the Synthesis repository. 
 Dim Success As Boolean = False
 Success = MyRepository.ConnectToRepository("RepositoryFileNamePath")
 
 'Get Scheduled Task. 
 Dim GetScheduledTask() as cScheduledTask
 GetScheduledTask= MyRepository.GetScheduledTask()