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 (24.3.0.1000)
Syntax
IDictionary<Guid, Guid> GetPublishTargets(
	ICollection<Guid> sourceEntryIds
)

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
ExceptionCondition
ArgumentExceptionsourceEntryIds is or empty.
NoPrivilegeException The caller does not have the Read privilege on the entry specified in sourceEntryIds.
InvalidSessionExceptionThe caller context is not associated with a valid session.
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