예제 #1
0
 /// <summary>
 /// Allows for the removal of a specific merge article configuration
 /// </summary>
 /// <param name="mergeFilter"></param>
 public void Remove(EditionConfigurationElement edition)
 {
     if (edition == null)
         throw new ArgumentNullException(nameof(edition));
     if (BaseIndexOf(edition) >= 0)
         BaseRemove(edition.Number);
 }
예제 #2
0
 /// <summary>
 /// returns the index of the given element
 /// </summary>
 /// <param name="edition">the edition to find</param>
 /// <returns></returns>
 public int IndexOf(EditionConfigurationElement edition) => BaseIndexOf(edition);
예제 #3
0
 /// <summary>
 /// Adds a new edition to configuration
 /// </summary>
 /// <param name="edition">the edition info to add</param>
 public void Add(EditionConfigurationElement edition)
 {
     BaseAdd(edition);
 }