IFileSystemServiceGetEntries Method

Gets file system entries in bulk.

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, FileSystemEntry?> GetEntries(
	ICollection<Guid> entryIds,
	GetEntryOptions options
)

Parameters

entryIds
Type: System.Collections.GenericICollectionGuid
The IDs of the entries to get.
options
Type: Dundas.BI.FileSystemGetEntryOptions
Options affecting the behavior of the operation.

Return Value

Type: IDictionaryGuid, FileSystemEntry
A dictionary containing the requested entries, keyed by entry ID.
Exceptions
ExceptionCondition
ArgumentNullExceptionentryIds is .
NoPrivilegeException The caller does not have the Read privilege to execute this operation on one or more of the specified entries, and FilterRestrictedResults was not specified.
InvalidSessionExceptionThe caller context is not associated with a valid session.
Remarks
Any requested entries which were not found (or to which the caller lacks the Read privilege, if FilterRestrictedResults was specified) will have value of in the dictionary. Likewise, if optionsSkipRecycled is specified, any recycled requested items will have value of in the dictionary.
See Also