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

Finds on a registry path all the value 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> FindValue(
	RegistryView view,
	string rootKeyName,
	string subKeyPath,
	string valueName,
	bool matchFullValueName,
	bool ignoreCase,
	SearchOption searchOption
)

Parameters

view  RegistryView

[Missing <param name="view"/> documentation for "M:DevCase.Core.Windows.Registry.UtilRegistry.FindValue(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.
valueName  String
The value name to find.
matchFullValueName  Boolean
If set to , matches all the value 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

Exceptions

ArgumentNullException rootKeyName or subKeyPath or subKeyName

See Also