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
    IList<T>.IndexOf(T)
    IList<T>.Insert(int, T)
    IList<T>.RemoveAt(int)
    IList<T>.this[int]
    ICollection<T>.Add(T)
    ICollection<T>.Clear()
    ICollection<T>.Contains(T)
    ICollection<T>.CopyTo(T[], int)
    ICollection<T>.Remove(T)
    ICollection<T>.Count
    ICollection<T>.IsReadOnly
    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
    EventHandler<ItemCollectionAddedEventArgs<T>>

    ItemRemoved

    ItemRemoved event is fired when an item is removed.

    Declaration
    event EventHandler<ItemCollectionRemovedEventArgs<T>> ItemRemoved
    Event Type
    Type Description
    EventHandler<ItemCollectionRemovedEventArgs<T>>
    In this article
    Back to top Generated by DocFX