IProjectServiceGetPublishTargets Method  | 
 Gets the latest publish target project IDs of the specified source project IDs.
 
    Namespace: 
   Dundas.BI.FileSystem
    Assembly:
   Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.3.0.1000)
SyntaxIDictionary<Guid, Guid> GetPublishTargets(
	ICollection<Guid> sourceEntryIds
)
Function GetPublishTargets ( 
	sourceEntryIds As ICollection(Of Guid)
) As IDictionary(Of Guid, Guid)
IDictionary<Guid, Guid>^ GetPublishTargets(
	ICollection<Guid>^ sourceEntryIds
)
abstract GetPublishTargets : 
        sourceEntryIds : ICollection<Guid> -> IDictionary<Guid, Guid> 
Parameters
- sourceEntryIds
 - Type: System.Collections.GenericICollectionGuid
The IDs of the source projects. 
Return Value
Type: 
IDictionaryGuid, 
Guid
            A dictionary contains the source project ID as the key and the latest target project ID as the value. If the target
            project cannot be found, the value will not be added.
            
Exceptions
Remarks
            The result keys exclude any source entity that has never been published into any project.
            The result values excludes any target project which the caller do not have the privilege to read.
            
See Also