Interface IIncrementalData
- Namespace
- Northwoods.Go.Models
- Assembly
- Northwoods.GoDiagram.WinForms.dll
Interface for the output object of ToIncrementalData(ChangedEvent).
public interface IIncrementalData
Remarks
Any shared or cyclic references within the model data will be maintained on the data included on this output object.
Properties
InsertedLinkKeys
Collection of link keys added. Any key included will also be included in the ModifiedLinkData collection.
IEnumerable InsertedLinkKeys { get; }
Property Value
InsertedNodeKeys
Collection of node keys added. Any key included will also be included in the ModifiedNodeData collection.
IEnumerable InsertedNodeKeys { get; }
Property Value
ModifiedLinkData
Collection of link data objects modified.
IEnumerable ModifiedLinkData { get; }
Property Value
ModifiedNodeData
Collection of node data objects modified.
IEnumerable ModifiedNodeData { get; }
Property Value
RemovedLinkKeys
Collection of link keys deleted.
IEnumerable RemovedLinkKeys { get; }
Property Value
RemovedNodeKeys
Collection of node keys deleted.
IEnumerable RemovedNodeKeys { get; }
Property Value
SharedData
Object containing the modified SharedData.
object SharedData { get; }