Interface ITargetItem<TEntity>
The ITargetItem interface is a wrapper around the Target, PreImage, and PostImage of a plugin operation.
public interface ITargetItem<out TEntity> : ITargetItem where TEntity : Entity
Type Parameters
TEntity
If using early-bound classes, specify the intended type. If using late-bound, specify Entity.
- Inherited Members
Properties
Input
TEntity Input { get; }
Property Value
- TEntity
Merged
TEntity Merged { get; }
Property Value
- TEntity
PostImage
TEntity? PostImage { get; }
Property Value
- TEntity
PreImage
TEntity? PreImage { get; }
Property Value
- TEntity