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
Namespace: SdlSdl.LanguagePlatformTranslationMemoryApiUpgrade
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 |
---|---|
EventHandlerItemCollectionAddedEventArgs |
ItemRemoved
ItemRemoved event is fired when an item is removed.
Declaration
event EventHandler<ItemCollectionRemovedEventArgs<T>> ItemRemoved
Event Type
Type | Description |
---|---|
EventHandlerItemCollectionRemovedEventArgs |