UtilRegistryFindSubKey(RegistryView, String, String, Boolean, Boolean, SearchOption) Method

Finds on a registry path all the subkey names that matches the specified criteria.

Definition

Namespace: DevCase.Core.Windows.Registry
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static IEnumerable<RegInfo> FindSubKey(
	RegistryView view,
	string fullKeyPath,
	string subKeyName,
	bool matchFullSubKeyName,
	bool ignoreCase,
	SearchOption searchOption
)

Parameters

view  RegistryView

[Missing <param name="view"/> documentation for "M:DevCase.Core.Windows.Registry.UtilRegistry.FindSubKey(Microsoft.Win32.RegistryView,System.String,System.String,System.Boolean,System.Boolean,System.IO.SearchOption)"]

fullKeyPath  String
The registry key full path.
subKeyName  String
The subkey name to find.
matchFullSubKeyName  Boolean
If set to , matches all the subkey name, otherwise matches a part of the name.
ignoreCase  Boolean
If set to , performs a non-sensitive stringcase comparison.
searchOption  SearchOption
The search mode.

Return Value

IEnumerableRegInfo
IEnumerableT

See Also