Example #1
0
        /// <summary>
        /// Get a list of id's of deleted items.
        /// </summary>
        /// <returns></returns>
        public string[] GetRetractions()
        {
            TypedElementList <EventRetract> nl = GetElements <EventRetract>();

            string[] ids = new string[nl.Count];
            int      i   = 0;

            foreach (EventRetract item in nl)
            {
                ids[i++] = item.ID;
            }
            return(ids);
        }
Example #2
0
 public override int IndexOf(TElement item)
 {
     return(TypedElementList.IndexOf(item));
 }
Example #3
0
 public override bool Contains(TElement item)
 {
     return(TypedElementList.Contains(item));
 }
Example #4
0
 public override void CopyTo(TElement[] array, int arrayIndex)
 {
     TypedElementList.CopyTo(array, arrayIndex);
 }
Example #5
0
 public override IEnumerator <TElement> GetEnumerator()
 {
     return(TypedElementList.GetEnumerator());
 }