The SearchDepthType simple type, in Configuration Manager, is used when defining discovery for various parts and settings. When used with file/folder parts, if the filter (file/folder name) has no wildcards, depth must be base. If wildcards are present, depth must be either OneLevel or Subtree, indicating that the depth the provider searches for matches.

<xs:simpleType name="SearchDepthType">
	<xs:restriction
		base="string"
	>
		<xs:enumeration
			value="Base"
		 />
		<xs:enumeration
			value="OneLevel"
		 />
		<xs:enumeration
			value="Subtree"
		 />
	</xs:restriction>
</xs:simpleType>

Enumeration

The following values are defined by the SearchDepthType simple type:

Value Description

Base

Root container.

OneLevel

One container below the root.

Subtree

Recursive search from the root container down.

See Also


Send comments about this topic to Microsoft.