IFileSystemServiceGetEntries Method |
Gets file system entries in bulk.
Namespace: Dundas.BI.FileSystemAssembly: Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (26.2.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 ICollectionGuid
- The IDs of the entries to get.
- options GetEntryOptions
- Options affecting the behavior of the operation.
Return Value
IDictionaryGuid,
FileSystemEntryA 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
in the dictionary.
Likewise, if
optionsSkipRecycled is specified,
any recycled requested items will have value of
in the dictionary.
See Also