IFileSystemServiceGetProjectRepresentation(ICollectionGuid, Boolean) Method |
Gets the specified entries organized with their ancestors in
Project objects.
Namespace: Dundas.BI.FileSystemAssembly: Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (26.2.0.1000)
SyntaxICollection<Project> GetProjectRepresentation(
ICollection<Guid> entryIds,
bool throwIfNotFound
)
Function GetProjectRepresentation (
entryIds As ICollection(Of Guid),
throwIfNotFound As Boolean
) As ICollection(Of Project)
ICollection<Project^>^ GetProjectRepresentation(
ICollection<Guid>^ entryIds,
bool throwIfNotFound
)
abstract GetProjectRepresentation :
entryIds : ICollection<Guid> *
throwIfNotFound : bool -> ICollection<Project> Parameters
- entryIds ICollectionGuid
- The IDs of the entries.
- throwIfNotFound Boolean
-
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
ICollectionProject
A collection of
Project objects containing the specified entries organized according their
proper hierarchy.
Exceptions
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