Exemple #1
0
        private void AddMatch(string key, RegValueData[] values, int subkeycount)
        {
            RegSeekerMatch match = new RegSeekerMatch {
                Key = key, Data = values, HasSubKeys = subkeycount > 0
            };

            matches.Add(match);
        }
Exemple #2
0
        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);
        }
Exemple #3
0
 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)
 {
 }
Exemple #6
0
        private void AddMatch(string key, RegValueData[] values, int subkeycount)
        {
            RegSeekerMatch match = new RegSeekerMatch(key, values, subkeycount);

            matches.Add(match);
        }
        private void AddMatch(string key, RegValueData[] values, int subkeycount)
        {
            RegSeekerMatch match = new RegSeekerMatch(key, values, subkeycount);

            matches.Add(match);
        }