Repository.Pool.GetPool: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
(Created page with '{{Template:APIClass|Repository Class|Repository}} {{Template:Repository.GetPool.Cmt}} ==Syntax== * GetPool({{APIPrefix|As}} cPool) Parameters Enter he Pool ID …')
 
No edit summary
Line 17: Line 17:
   Success = MyRepository.ConnectToRepository("RepositoryFileNamePath")
   Success = MyRepository.ConnectToRepository("RepositoryFileNamePath")
    
    
  {{APIComment|'Get the list of crews in the connected repository.}}
  {{APIComment|'Get the list of pools in the connected repository.}}
   Dim ListOfCrews() As [[cCrew Class|cCrew]]
   Dim ListOfPools() As [[cPool Class|cPool]]
   ListOfCrews = MyRepository.GetAllCrews()
   ListOfPools = MyRepository.GetAllPools()
    
    
  {{APIComment|'Get a Pool.}}
  {{APIComment|'Get a Pool.}}
   Dim GetPool() as cPool
   Dim GetPool() as cPool
   GetPool= MyRepository.GetPool(1)
   GetPool= MyRepository.GetPool(1)

Revision as of 20:12, 21 April 2015


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 pools in the connected repository. 
 Dim ListOfPools() As cPool
 ListOfPools = MyRepository.GetAllPools()
 
 'Get a Pool. 
 Dim GetPool() as cPool
 GetPool= MyRepository.GetPool(1)