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 (25.3.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.GenericICollectionGuid
The IDs of the entries to get. - options
 - Type: Dundas.BI.FileSystemGetEntryOptions
Options affecting the behavior of the operation. 
Return Value
Type: 
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