IFileSystemServiceGetProjectRepresentation Method (ICollectionGuid) |
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 (9.0.0.1000)
SyntaxICollection<Project> GetProjectRepresentation(
ICollection<Guid> entryIds
)
Function GetProjectRepresentation (
entryIds As ICollection(Of Guid)
) As ICollection(Of Project)
ICollection<Project^>^ GetProjectRepresentation(
ICollection<Guid>^ entryIds
)
abstract GetProjectRepresentation :
entryIds : ICollection<Guid> -> ICollection<Project>
Parameters
- entryIds
- Type: System.Collections.GenericICollectionGuid
The IDs of the entries.
Return Value
Type:
ICollectionProject
A collection of
Project objects containing the specified entries organized according their
proper hierarchy.
Exceptions| Exception | Condition |
|---|
| ArgumentNullException | entryIds is . |
| NotFoundException | One or more items in entryIds corresponds to an entry that does not exist. |
| NoPrivilegeException | The caller does not have permission to access one or more of the specified entries. |
| InvalidSessionException | The 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