public ApplicationEventFilter()
 {
     _filterEntries = new FilterEntryCollection();
     _filterEntries.Changed += filterEntryCollectionChanged;
 }
 public FilterEntryEnumerator(FilterEntryCollection mappings)
 {
     temp = ((mappings));
     baseEnumerator = temp.GetEnumerator();
 }
 /// <summary>
 ///     <para>
 ///       Initializes a new instance of <see cref='Tools..FilterEntryCollection'/> based on another <see cref='Tools..FilterEntryCollection'/>.
 ///    </para>
 /// </summary>
 /// <param name='value'>
 ///       A <see cref='Tools..FilterEntryCollection'/> from which the contents are copied
 /// </param>
 public FilterEntryCollection(FilterEntryCollection value)
 {
     AddRange(value);
 }
 /// <summary>
 ///     <para>
 ///       Adds the contents of another <see cref='Tools..FilterEntryCollection'/> to the end of the collection.
 ///    </para>
 /// </summary>
 /// <param name='value'>
 ///    A <see cref='Tools..FilterEntryCollection'/> containing the objects to add to the collection.
 /// </param>
 /// <returns>
 ///   <para>None.</para>
 /// </returns>
 /// <seealso cref='Tools..FilterEntryCollection.Add'/>
 public void AddRange(FilterEntryCollection value)
 {
     for (int i = 0; (i < value.Count); i = (i + 1))
     {
         Add(value[i]);
     }
 }