IFileSystemServiceGetProjectRepresentation Method (ICollectionGuid, Boolean)

Gets the specified entries organized with their ancestors in Project objects.

Namespace:  Dundas.BI.FileSystem
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax
ICollection<Project> GetProjectRepresentation(
	ICollection<Guid> entryIds,
	bool throwIfNotFound
)

Parameters

entryIds
Type: System.Collections.GenericICollectionGuid
The IDs of the entries.
throwIfNotFound
Type: SystemBoolean
If set to , a NotFoundException will be thrown if one or more items in entryIds corresponds to an entry that does not exist.

Return Value

Type: ICollectionProject
A collection of Project objects containing the specified entries organized according their proper hierarchy.
Exceptions
ExceptionCondition
ArgumentNullExceptionentryIds is .
NotFoundExceptionOne or more items in entryIds corresponds to an entry that does not exist.
NoPrivilegeExceptionThe caller does not have permission to access one or more of the specified entries.
InvalidSessionExceptionThe caller context is not associated with a valid session.
Remarks
If one of the specified entries exists but is not visible to the caller, it will be included in the result with any identifying information stripped away.
See Also