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(Int32, T)
IList<T>.RemoveAt(Int32)
IList<T>.Item[Int32]
ICollection<T>.Add(T)
ICollection<T>.Clear()
ICollection<T>.Contains(T)
ICollection<T>.CopyTo(T[], Int32)
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>> |