DOTNETIDS.IDS.Iterate C# (CSharp) Method

Iterate() private method

Iterates over a set of keys and values
private Iterate ( string key, string val ) : void
key string The key
val string The value
return void
        private void Iterate(string key, string val)
        {
            Event e = new Event(key, val, Detect(key, val));

            if (e.Filters != null && e.Filters.Count > 0)
            {
                _report.AddEvent(e);
            }
        }