private void AddMatch(string key, RegValueData[] values, int subkeycount) { RegSeekerMatch match = new RegSeekerMatch { Key = key, Data = values, HasSubKeys = subkeycount > 0 }; matches.Add(match); }
private void AddMatch(string key, List <RegValueData> values, int subkeycount) { RegSeekerMatch match = new RegSeekerMatch(key, values, subkeycount); if (MatchFound != null) { searcher.ReportProgress(0, match); } matches.Add(match); }
public MatchFoundEventArgs(RegSeekerMatch match) { Match = match; }
public GetRegistryKeysResponse(RegSeekerMatch[] matches, string rootKey = null) { Matches = matches; RootKey = rootKey; }
public GetRegistryKeysResponse(RegSeekerMatch match, string rootKey = null) : this(new RegSeekerMatch[] { match }, rootKey) { }
private void AddMatch(string key, RegValueData[] values, int subkeycount) { RegSeekerMatch match = new RegSeekerMatch(key, values, subkeycount); matches.Add(match); }