GetEntryOptions Enumeration |
Specifies options that control the operation of retrieving a folder.
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 GetEntryOptions
<FlagsAttribute>
Public Enumeration GetEntryOptions
[FlagsAttribute]
public enum class GetEntryOptions
[<FlagsAttribute>]
type GetEntryOptions
Members
| Member name | Value | Description |
---|
| None | 0 |
Specifies no options to the operation.
|
| IncludeChildren | 1 |
Specifies that the immediate children of the folder should be retrieved.
|
| Recursive | 2 |
When IncludeChildren is specified, indicates that all descendants of all subfolders
should be retrieved as well.
|
| FilterRestrictedResults | 4 |
For methods which return multiple entries, specifies that any results explicitly requested
by the caller, but which the caller
cannot see (due to insufficient privileges on the entry) get filtered out of the result.
|
| 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 to improve performance when this information
is not required.
|
| SkipInactiveEntries | 32 |
Skip the entries which are type of File and the IsInactive
property is .
|
| SkipRecycled | 64 |
Skips recycled entries, treating them as if they did not exist.
|
Remarks
Additional notes:
Field | Notes |
---|
FilterRestrictedResults |
If this flag is not specified, the default behavior is for a NoPrivilegeException
to be thrown when the caller does not have sufficient privileges to get an entry.
|
See Also