Repository.Pool.GetPool

From ReliaWiki
Revision as of 20:12, 21 April 2015 by John Leavitt (talk | contribs) (Created page with '{{Template:APIClass|Repository Class|Repository}} {{Template:Repository.GetPool.Cmt}} ==Syntax== * GetPool({{APIPrefix|As}} cPool) Parameters Enter he Pool ID …')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


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

Syntax

Parameters

Enter he Pool ID to get desired pool.

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 the list of crews in the connected repository. 
 Dim ListOfCrews() As cCrew
 ListOfCrews = MyRepository.GetAllCrews()
 
 'Get a Pool. 
 Dim GetPool() as cPool
 GetPool= MyRepository.GetPool(1)