Search Results for

    Show / Hide Table of Contents

    Interface IItemCollection<T>

    IItemCollection interface represents an item collection; an item collection is a list that fires events when an item is added or removed.

    Inherited Members
    System.Collections.Generic.IList<T>.IndexOf(T)
    System.Collections.Generic.IList<T>.Insert(System.Int32, T)
    System.Collections.Generic.IList<T>.RemoveAt(System.Int32)
    System.Collections.Generic.IList<T>.Item[System.Int32]
    System.Collections.Generic.ICollection<T>.Add(T)
    System.Collections.Generic.ICollection<T>.Clear()
    System.Collections.Generic.ICollection<T>.Contains(T)
    System.Collections.Generic.ICollection<T>.CopyTo(T[], System.Int32)
    System.Collections.Generic.ICollection<T>.Remove(T)
    System.Collections.Generic.ICollection<T>.Count
    System.Collections.Generic.ICollection<T>.IsReadOnly
    System.Collections.Generic.IEnumerable<T>.GetEnumerator()
    Namespace: Sdl.LanguagePlatform.TranslationMemoryApi.Upgrade
    Assembly: Sdl.LanguagePlatform.TranslationMemoryApi.dll
    Syntax
    public interface IItemCollection<T> : IList<T>, ICollection<T>, IEnumerable<T>, IEnumerable
    Type Parameters
    Name Description
    T

    Events

    ItemAdded

    ItemAdded event is fired when an item is added.

    Declaration
    event EventHandler<ItemCollectionAddedEventArgs<T>> ItemAdded
    Event Type
    Type Description
    System.EventHandler<ItemCollectionAddedEventArgs<T>>

    ItemRemoved

    ItemRemoved event is fired when an item is removed.

    Declaration
    event EventHandler<ItemCollectionRemovedEventArgs<T>> ItemRemoved
    Event Type
    Type Description
    System.EventHandler<ItemCollectionRemovedEventArgs<T>>

    On this page

    • Events
      • ItemAdded
      • ItemRemoved
    Back to top Generated by DocFX