SfcDependencyDiscoveryMode 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.
The DiscoveryMode enum indicates the types of relationships which should be processed in the dependency graph. These are pre-defined permutations of the lower-level relation flags which we currently do not expose direct control over picking. It is the responsibility of the domains and objects called on to add relations to honor this mode.
- Children - follow all children of the root objects recursively. No references are followed.
- Full - follow all children and all references of root objects recursively.
- Propagate - follow all children to emulate what PropagateInfo does in SMO in Yukon.
- UsedBy - follow direct parent and inbound references of root objects. No recursion.
- Uses - follow direct children and outbound references of root objects. No recursion.
public enum SfcDependencyDiscoveryMode
type SfcDependencyDiscoveryMode =
Public Enum SfcDependencyDiscoveryMode
- Inheritance
-
SfcDependencyDiscoveryMode
Fields
Name | Value | Description |
---|---|---|
Children | 0 | Include only required children for minimal completeness of parent objects. |
Full | 1 | Include all children even those not necessary for minimal completeness of parent objects. |
Propagate | 2 | Include all children as needed for PropagateInfo emulation. |
UsedBy | 3 | Include only immmediate parents of required children and immediate inbound references. |
Uses | 4 | Include only immediate required children and immediate outbound references. |