IProjectServiceGetPublishTargetsWithHistory Method

Gets all the publish target project IDs of the specified source entry 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, ICollection<Guid>> GetPublishTargetsWithHistory(
	ICollection<Guid> sourceEntryIds
)

Parameters

sourceEntryIds
Type: System.Collections.GenericICollectionGuid
The IDs of the source entries.

Return Value

Type: IDictionaryGuid, ICollectionGuid
A dictionary contains the source entry ID as the key and collection of all the target project IDs 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