Interface ICollectionBinder<T>
IBinder that provides the ability to bind the collection of items.
Namespace: FastenUp.Runtime.Binders.Collections
Assembly: cs.temp.dll.dll
Syntax
public interface ICollectionBinder<in T> : IBinder
Type Parameters
Name | Description |
---|---|
T | Type of the item. |
Methods
Add(T)
Adds item to the bound collection.
Declaration
void Add(T item)
Parameters
Type | Name | Description |
---|---|---|
T | item | Item to add. |
Remove(T)
Removes item from the bound collection.
Declaration
void Remove(T item)
Parameters
Type | Name | Description |
---|---|---|
T | item |