EntitySetChangedEventArgsTEntity Constructor  | 
 
            Initializes a new instance.
            
 
    Namespace: 
   AGI.Foundation.Tracking
    Assembly:
   AGI.Foundation.Tracking (in AGI.Foundation.Tracking.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic EntitySetChangedEventArgs(
	ICollection<TEntity> added,
	ICollection<Object> removed
)
Public Sub New ( 
	added As ICollection(Of TEntity),
	removed As ICollection(Of Object)
)
public:
EntitySetChangedEventArgs(
	ICollection<TEntity>^ added, 
	ICollection<Object^>^ removed
)
new : 
        added : ICollection<'TEntity> * 
        removed : ICollection<Object> -> EntitySetChangedEventArgsParameters
- added
 - Type: System.Collections.GenericICollectionTEntity
The collection of added entities. - removed
 - Type: System.Collections.GenericICollectionObject
The collection of identifiers of removed entities. 
See Also