FileSystemQueryOptions Enumeration |
Specifies flags that control the way a file system query is performed.
Namespace:
Dundas.BI.FileSystem
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax [FlagsAttribute]
public enum FileSystemQueryOptions
<FlagsAttribute>
Public Enumeration FileSystemQueryOptions
[FlagsAttribute]
public enum class FileSystemQueryOptions
[<FlagsAttribute>]
type FileSystemQueryOptions
Members
| Member name | Value | Description |
---|
| None | 0 |
Specifies no query flag.
|
| IncludeChildren | 1 |
Specifies that the Files and Folders
properties of any results should be populated.
|
| RecursiveResults | 2 |
When combined with IncludeChildren, specifies that the Files
and Folders properties of any results should be populated recursively.
|
| RecursiveQuery | 4 |
Specifies that the query should be applied to files/folders recursively.
|
| IncludeNeverCheckedInByAnotherUser | 8 |
Specifies that the result should include entries which were created by another user
but never checked in. This flag will be ignored unless the caller is an administrator.
|
| SkipPopulateNames | 16 |
Specifies that account and group names in any MemberInfo associated
with the result should not be populated. Use this option to improve performance in
situations where having only the IDs is sufficient.
|
| SkipQueryRootSecurityCheck | 32 |
Specifies that if the caller does not have the ListFolderContents on one
of the query root IDs, that query root ID will simply be ignored, rather than a NoPrivilegeException
being thrown.
|
See Also