IFileSystemService.GetEntries 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 (25.1.0.1000)
SyntaxIDictionary<Guid, FileSystemEntry?> GetEntries(
ICollection<Guid> entryIds,
GetEntryOptions options
)
Function GetEntries (
entryIds As ICollection(Of Guid),
options As GetEntryOptions
) As IDictionary(Of Guid, FileSystemEntry)
IDictionary<Guid, FileSystemEntry^>^ GetEntries(
ICollection<Guid>^ entryIds,
GetEntryOptions options
)
abstract GetEntries :
entryIds : ICollection<Guid> *
options : GetEntryOptions -> IDictionary<Guid, FileSystemEntry>
Parameters
- entryIds
- Type: System.Collections.Generic.ICollection<Guid>
The IDs of the entries to get. - options
- Type: Dundas.BI.FileSystem.GetEntryOptions
Options affecting the behavior of the operation.
Return Value
Type:
IDictionary<Guid,
FileSystemEntry>A dictionary containing the requested entries, keyed by entry ID.
Exceptions
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
null in the dictionary.
Likewise, if
optionsSkipRecycled is specified,
any recycled requested items will have value of
null in the dictionary.
See Also