FileSystemEntryControllerBase.FileSystemQueryHelper Method |
Retrieves information about multiple files or folders.
Namespace:
Dundas.BI.WebApi.Controllers
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntaxprotected IList<FileSystemEntry> FileSystemQueryHelper(
ICollection<Guid>? entryIds,
GetEntryOptions getEntryOptions,
QueryFileSystemEntriesOptions? options
)
Protected Function FileSystemQueryHelper (
entryIds As ICollection(Of Guid),
getEntryOptions As GetEntryOptions,
options As QueryFileSystemEntriesOptions
) As IList(Of FileSystemEntry)
protected:
IList<FileSystemEntry^>^ FileSystemQueryHelper(
ICollection<Guid>^ entryIds,
GetEntryOptions getEntryOptions,
QueryFileSystemEntriesOptions^ options
)
member FileSystemQueryHelper :
entryIds : ICollection<Guid> *
getEntryOptions : GetEntryOptions *
options : QueryFileSystemEntriesOptions -> IList<FileSystemEntry>
Parameters
- entryIds
- Type: System.Collections.Generic.ICollection<Guid>
A list of entry IDs, when getting entries by ID. - getEntryOptions
- Type: Dundas.BI.FileSystem.GetEntryOptions
Options for retrieving entries by ID. - options
- Type: Dundas.BI.WebApi.Models.QueryFileSystemEntriesOptions
Options for retrieving entries using a file system query.
Return Value
Type:
IList<FileSystemEntry>A list of
FileSystemEntry objects.
ExceptionsException | Condition |
---|
ArgumentNullException | entryIds and options are both null. |
See Also