UtilRegistryFindValueData Method

Finds on a registry path all the values that contains data 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> FindValueData(
	RegistryView view,
	string rootKeyName,
	string subKeyPath,
	string valueData,
	bool matchFullData,
	bool ignoreCase,
	SearchOption searchOption
)

Parameters

view  RegistryView

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

rootKeyName  String
The rootkey name.
subKeyPath  String
The subkey path.
valueData  String
The data to find.
matchFullData  Boolean
If set to , matches all the data, otherwise matches a part of the data.
ignoreCase  Boolean
If set to , performs a non-sensitive stringcase comparison (for String data).
searchOption  SearchOption
The search mode.

Return Value

IEnumerableRegInfo
IEnumerableT

Exceptions

ArgumentNullException rootKeyName or subKeyPath or subKeyName

See Also