IncludeResults Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Enumeration returned from the IncludeInResultsCallback to specify whether current item should be included in the list, and whether search should continue.
This enumeration supports a bitwise combination of its member values.
public enum class IncludeResults
[System.Flags]
public enum IncludeResults
[<System.Flags>]
type IncludeResults =
Public Enum IncludeResults
- Inheritance
-
IncludeResults
- Attributes
Fields
Name | Value | Description |
---|---|---|
Exclude | 0 | Default value, excludes this node from the search results. |
Include | 1 | Includes this node in the search results. |
StopCurrentHierarchySearch | 2 | halts search of the current hierarchy. |
StopSearch | 4 | halts search of the any further hierarchies after the current one. |
StopDescendingHierarchy | 8 | halts search of child hierarchies. |