IFileSystemServiceRevisionQuery Method |
Queries file system revision history corresponding to the specified criteria.
Namespace: Dundas.BI.FileSystemAssembly: Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (26.2.0.1000)
SyntaxIList<RevisionInfo> RevisionQuery(
int pageNumber,
int pageSize,
Guid queryRootId,
FileSystemQueryOptions queryOptions,
IList<Tuple<RevisionQueryField, SortDirection>>? orderBy,
ICollection<RevisionQueryFilterRule>? filter
)
Function RevisionQuery (
pageNumber As Integer,
pageSize As Integer,
queryRootId As Guid,
queryOptions As FileSystemQueryOptions,
orderBy As IList(Of Tuple(Of RevisionQueryField, SortDirection)),
filter As ICollection(Of RevisionQueryFilterRule)
) As IList(Of RevisionInfo)
IList<RevisionInfo^>^ RevisionQuery(
int pageNumber,
int pageSize,
Guid queryRootId,
FileSystemQueryOptions queryOptions,
IList<Tuple<RevisionQueryField, SortDirection>^>^ orderBy,
ICollection<RevisionQueryFilterRule^>^ filter
)
abstract RevisionQuery :
pageNumber : int *
pageSize : int *
queryRootId : Guid *
queryOptions : FileSystemQueryOptions *
orderBy : IList<Tuple<RevisionQueryField, SortDirection>> *
filter : ICollection<RevisionQueryFilterRule> -> IList<RevisionInfo> Parameters
- pageNumber Int32
- The page number, or 0 to indicate that all pages should be returned.
- pageSize Int32
- The number of results in each page (ignored if pageNumber is 0).
- queryRootId Guid
- The ID of the entry where the query starts.
- queryOptions FileSystemQueryOptions
- A bit mask comprised of one or more FileSystemQueryOptions
that specify how the query is performed.
- orderBy IListTupleRevisionQueryField, SortDirection
- The sort order of the result, or if the order does not matter.
- filter ICollectionRevisionQueryFilterRule
- The filter rules which should be applied to the query, or if no filters are required.
Return Value
IListRevisionInfoA collection of
RevisionInfo objects matching the query criteria.
Exceptions
Remarks
To query the entire application file system, specify
ProjectsRootFolder as the value
of
queryRootId.
See Also